摘要: 有下列程序:main(){int k=5,n=0;do{switch(k){case 1:case 3:n+=1;k--;break;default:n=0;k--;ca[阅读全文:]
摘要: 函数fseek()的正确调用形式是()。[阅读全文:]
摘要: 下列函数值的类型是()。fun(double x){float y;y=3*x-4;returny;}[阅读全文:]
摘要: 表达式~0x11的值是()。[阅读全文:]
摘要: 对于下列定义,不正确的叙述是()。union data{int a;char b;double c;}x=y;[阅读全文:]
摘要: 在嵌套使用if语句时,C语言规定else总是()。[阅读全文:]
摘要: 有下列程序段:struct st{intx;int*y;}*pt;int a[]={1,2},b[]={3,4};struct st c[2]={10,a,20,b};[阅读全文:]
摘要: 下列程序的运行结果为()。#define MAX(x,y)(x)>(y)?(x):(y)main(){int a=2,b=3,c=1,d=3,t;printf([阅读全文:]
摘要: 若已包括头文件和,运行下列程序段时输出结果是()。int i=0;char s1[10]="ABCD[阅读全文:]
摘要: 有下列程序段:int k=0,a=1,b=2,c=3;k=ac?C:k;执行该程序段后,k的值是()。[阅读全文:]