相关题目
单选题
392、若有下面的说明和定义,则sizeof( )的值是______。
struct aa
{ int r1;
double r2;
float r3;
}maya;
单选题
0,4,8,
单选题
1,3,5,
单选题
1,5,9,
单选题
391、下面程序的输出是______。
main( )
{ int t=1;
fun ( ;
单选题
390、当执行下面程序且输入:ABC时,输出的结果是______。
#include
#include
main( )
{ char ss[10]="12345";
strcat(ss,"6789");
gets( );printf( );
}
单选题
389、以下关于字符串的叙述中正确的是______。
单选题
388、有以下程序
#include
int fun( )
{ int n=0;
while(*s<='9'&&*s>='0') { n=10*n+*s-'0';s++;}
return( );
}
main()
{ char s[10]={ '6', '1','*','4','*', '9', '*', '0', '*'};
printf( );
}
程序的运行结果是______。
单选题
387、若有定义语句:int a[2][3],*p[3];,则以下语句正确的是______。
单选题
386、有以下函数
int aaa( )
{ char *t=s;
while( );
t-- ;
return( );
}
以下关于aaa函数的功能叙述正确的是______。

