填空题

下列程序的运行结果是______。
#define POW(r)(r)*(r)
main()
int x=3,y=2,t;
t=POW(x+y);
printf("%d\n",t);

【参考答案】

Y
<上一题 目录 下一题>
热门 试题

填空题
下列程序的输出结果是______。 main() int a=2,b=4,c=6; int*p1=&a,*p2,&b,*p; *(p=&c)=*p1*(*p2); printf( %d n ,c);
填空题
下列程序运行后的输出结果是______。 #include<stdio.h> main() char s[20]; scanf( %s ,s); printf( %s ,s); 运行程序,输入HOW ARE YOU。
相关试题
  • 一个源文件中的外部变量的作用域为( )。
  • 有下列二叉树,对此二叉树前序遍历的结果为...
  • 下列程序的输出结果是( )。 #include...
  • 设有定义:int n1=0,n2,*p=&n2...
  • 当说明一个结构体变量时系统分配给它的内存...