单项选择题使用函数fseek()不能完成的操作是( )
单项选择题有以下程序,程序运行后的输出结果是( ) main() int a[10]=1,2,3,4,5,6,7,8,9,10),*p=&a[3],*q=p+2; printf( %d 11 ,*p+*q);
单项选择题设int b[][5]=1,2,3,4,5,6,7;,则元素b[1][2]的值是( )
单项选择题若x、y是int型变量,则执行以下语句后的x值是( ) #include<stdio.h> main() int x,y; for(y=1,x=1;y<50;y++) if(x>=10)break; if(x%2==1) x+=5; x-=3;
单项选择题执行语for(i=1;i++<4;);后i的值是( )