【单选题】
若已定义intm=7;floatk=5.5;则表达式k+m%2/4的值为()。
【单选题】
以下叙述中正确的是()
①
C源程序中注释部分可以出现在程序中任意合适的地方
④
构成C源程序的基本单位是函数,所有函数名都可以由用户命名
【单选题】
下面程序的输出结果是()。#includestdio.hintnum=10;func(){intnum=4;return++num;}voidmain(){printf("%d\n",func());}
【单选题】
若有定义:inta[3][4];则表达式a[2][1]-a的值为()。
【单选题】
若有以下类型说明,则叙述错误的是()。typedefunion{charname[10];intage;}ustu,*umy;
【单选题】
以下程序运行后,文件test.txt的内容是()。#includestdio.hmain(){FILE*fp;charstr[][10]={"first","second"};fp=fopen("test.txt","w");if(fp!=NULL)fprintf(fp,"%s",str[0]);fclose(fp);fp=fopen("test.txt","w");if(fp!=NULL)fprintf(fp,"%s",str[1]);fclose(fp);}