填空题
以下程序的输出结果是______。
# include <stdio.h>
# define N 3
# define M(n) (N+1) *n
main()
int x;
x=2*(N+M(2));
printf("%d\n", x);
【参考答案】
V
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
若有定义语句:char str[]= 0 ;,则字符串str在内存中实际占______字节。
点击查看答案&解析
填空题
有以下程序: # include <stdio.h> int fun(int n) if(n=0) return(1); return(fun(n-1)*n); main() int t; t=fun(3); printf ( %d n , t); 程序运行后的输出结果是______。
点击查看答案&解析
相关试题
以下函数的功能是输出链表结点中的数据,形...