摘要: 有以下程序的输出结果是( ) void sum(int *a) { a[0]=a[1];} main( ) { int aa[10]={1,2,3,4[阅读全文:]
摘要: 使用表设计器定义表中字段时,______不是必须设置的内容。[阅读全文:]
摘要: 有以下程序的输出结果是( ) void swap1(int c[ ]) { int t; t=c[0];c[0]=c[1];c[1]=t; } v[阅读全文:]
摘要: 设有以下语句 typedef structS { int g; char h; } T; 则下面叙述中正确的是( )[阅读全文:]
摘要: 有以下程序的输出结果是( ) main( ) { char a[ ]=”abcdefg”,b[10]=”abcdefg”; printf(“%d[阅读全文:]
摘要: 有以下程序int a=2;int f(int *a){return (*a)++;}main( ){ int s=0; { int a=5; s+=[阅读全文:]
摘要: 有以下程序段中b的值是( ) int a[10]={1,2,3,4,5,6,7,8,9,10},*p=&a[3],b; b=p[5];[阅读全文:]
摘要: 有以下程序的输出结果是( ) void f(int v , int w) { int t; t=v;v=w;w=t; } main( ) { i[阅读全文:]
摘要: 设有定义:int n=0,*p=&n,**q=&p;则以下选项中,正确的赋值语句是( )[阅读全文:]
摘要: 有以下程序的输出结果是( ) char fun(char x , char y) {if(x main( ) { int a=’9’,b=’8’,c=[阅读全文:]