单项选择题

以下选项中,不能作为合法常量的是

A.1.234e04
B.1.234e0.4
C.1.234e+4
D.1.234e0
<上一题 目录 下一题>
热门 试题

单项选择题
有以下程序 main() { int i; for(i=0;i<3;i++) switch(i) { case 0: prinft( %d ,i); case 2: prinft( %d ,i); default:prinft( %d ,i); } } 程序运行后的输出结果是
A.022111
B.021021
C.000122
D.012
单项选择题
有以下程序 #include <stdio.h> void WriteStr(char *fn, char *str) { FILE *fp; fp=fopen(fn, w ); fputs(str,fp);fclose(fp); } main() { WriteStr( t1.dat , start ); WriteStr( t1.dat , end ); } 程序运行后,文件t1.dat中的内容是
A.start
B.end
C.startend
D.endrt
相关试题
  • 以下程序运行后的输出结果是______。...
  • 设有如下定义#define MYSWAP(z,x,y)...
  • 以下程序中函数huiwen 的功能是检查一个字...
  • 以下程序运行后的输出结果是______。...
  • fun函数的功能是:首先对a所指的N行N列的矩...