问答题

以下程序的运行结果是[填空(1)]。
    main(){
        int a=10,b=20,c;
        c=a/b;
        #ifdef DEBUG
            printf("a=%d,b=%d,",a,b);
        #endif
        printf("c=%d",c);
    }

【参考答案】

c=0