#include \ void main() {
int i,j,k,count=0; for(i=1;i<=9;i++) for(j=0;j<=9;j++)
if( (1) )continue; else
for(k=0;k<=9;k++) if( (2) )count++; printf(\ }
2、 下面程序能将Hello!反向打印出来,请填空。
void print_hello (char *string) {
char *str= ( 1) ; if (*str== (2) ) return; while(*str) str++;
(3) ; printf(\
(4) NULL; print_hello ( (5) ); }
int main() {
char str[]=\ print_hello(str); }
3、下列程序的运行结果是( )。
int func(int a,int b) {
static int m=0,i=2; i+=m+1; m=i+a+b; return(m); }
int main() {
int k=4,m=3,p; p=func(k,m); printf(\ p=func(k,m); printf(\
5
}
4、下列程序的运行结果是( )。 f(int j) { static int a=100; int k=1; ++k;
printf(\ a+=10; }
int main() {
int i;
for(i=1;i<=5;i++) f(i);
5、下面程序对数组中的元素值进行由大到小的排序。 #include
int a[12]= {2,4,15,3,17,5,8,23,9,7,11,13},i,j,k; for(k=0;k<12;k++) for(i=k;i<12;i++)
if(a[i]> (1) ) {
j=a[i];
a[i]= (2) ; (3) =j; }
for(i=0;i<12;i++)
printf(\ printf(\ }
6、 以下程序可输出两个整数中大的那个数,两个整数由键盘输入。请从对应的一组选择项中,选择正确的选项填空。 int main() { int a,b,*pl,*p2;
pl= (1) malloc(sizeof(int));p2= (1) malloc(sizeof(int)); printf(\
scanf(\ (2) ); if(*p2>*pl)*pl=*p2; free(p2);
printf(\ (3) );
6
}
(l) (A) int (B) int* (C)(int) (D)(int*) (2)(A)*p1,*p2 (B) pl,p2 (C)&p1,&p2 (D)&a,&b (3)(A)*p1 (B)*p2 (C) p1 (D) p2
7、在下面横线上填上适当的内容,完成该程序,使其输出结果为: i=3,ri=3 i=6,ri=6 i=10,ri=10
#include
; //改写变量 cout<<\
; //改写引用 cout<<\}
7