填空题 指针变量是把内存中另一个数据的()作为其值的变量。
问答题 写出下列程序的输出结果。 #define TEST main() { int x=0,y=1 ,z; z=2*x+y; #ifdef TEST printf(“%d %d ”,x,y); #endif printf(“%d\n”,z); }
填空题 下列程序的输出结果是() #define MAX(a,b) a>b #define EQU(a,b) a==b #define MIN(a,b) a<b main() { int a=5,b=6; if(MAX(a,b)) printf(“MAX\n”); if(EQU(a,b)) printf(“EQU\n”); if(MIN(a,b)) printf(“MIN\n”);}