填空题
以下程序的输出结果是
[12]
。 #include
#define N 3 #define M(n) (N+1)*n main() { int x; x = 2 * (N + M(2)); printf("%d\n", x); }
【参考答案】
22
点击查看答案
<上一题
目录
下一题>
热门
试题
填空题
有以下程序#include main(){int d, n = 1234;while(n != 0){ d = n % 10; n = n 10; printf( %d , d); }}程序运行后的输出结果是____[10]______ 。
点击查看答案
填空题
有以下程序 #include main () { int i, sum = 0; for (i = 1; i [9] 。
点击查看答案
相关试题
有以下程序 #include int fun(int n...
以下函数的功能是输出链表结点中的数据,形...
若有定义语句:char str[] = 0 ;...
有以下程序 #include int k = 7;...