摘要: 设有以下定义 union data { int d1; float d2; }demo; 则下面叙述中错误的是[阅读全文:]
摘要: 有以下程序 #include #include typedef struct { cha[阅读全文:]
摘要: 有以下程序 #include struct tt { int x; struct tt *y; } *p; s[阅读全文:]
摘要: 若有定义语句:int a[2][3],*p[3],则以下语句中正确的是[阅读全文:]
摘要: 若程序中有宏定义行:#define N 100 则以下叙述中正确的是[阅读全文:]
摘要: 有以下程序 #include main() { int y=9; for( ; y>0; y--) if(y%[阅读全文:]
摘要: 有以下程序 #include void fun(int n, int *p) { int f1,t2; if(n==1 |[阅读全文:]
摘要: 设有条件表达式:(EXP)?i++:j-- ,则以下表达式中与(E)(P)完全等价的是[阅读全文:]
摘要: 若有定义语句:int a[3][6];,按在内存中的存放顺序,a数组的第10个元素是[阅读全文:]
摘要: 有以下程序 #include int a=1; int f(int c) { stati[阅读全文:]