摘要: 下列程序的输出结果是 #include "stdio.h" #defineM(x,y)x%y main() {int a,m=12,n=100; a=M(n,m[阅读全文:]
摘要: 阅读下列程序,则执行后的结果为#include"stdio.h"main(){int c[][4]={1,2,3,4,5,6,7,34,213,56,6[阅读全文:]
摘要: 以下程序的输出结果是 int f() { static int i=0; int s=1; s+=i; i++; return s; } main() { in[阅读全文:]
摘要: 下列程序执行后的输出结果是main(){int a[3][3],*p,i;p=&a[0][0];for(i=1;i<9;i++)p[i]=i+1;[阅读全文:]
摘要: 下面程序段的运行结果是char *S="abcde";s+=2;printf("%d",s);[阅读全文:]
摘要: 下列选项中错误的说明语句是[阅读全文:]
摘要: 以下不正确的定义语句是[阅读全文:]
摘要: 若有条件表达式(exp)?a++:b--,则以下表达式中能完全等价于表达式(exp)的是[阅读全文:]
摘要: 有以下函数 int aaa(char*s) { char*t=s; while(*t++); t--; return(t-s); } 以下关于aaa函数的[阅读全文:]
摘要: 设有定义:char p[]={′1′,′2′,′3′},*q=p;,以下不能计算出一个char型数据所占字节数的表达式是[阅读全文:]