单项选择题

以下合法的赋值语句是 ______。

A.X=Y=100
B.D-;
C.X+Y;
D.
<上一题 目录 下一题>
热门 试题

单项选择题
运行下面的程序,其输出结果为 ______。 main() pintf( %d,%d ,5%-3,-5%3);
A.2,-2
B.-2,2
C.-2,-2
D.2,2
单项选择题
下面的程序执行后,文件test.t中内容是 ______。 #include<stdio.h> void fun(char * fName,char * st) FILE * myf; int i; myf=fopm(fname, w ); for(i=0;i<strlen(st);i++)fputc(st[i],myf); fclose(myf); main()fun( test.t , new world );fun( test.t , hello, );
A.hello,
B.new worldhello
C.new world
D.hello.rld
相关试题
  • 下面的程序执行后,文件test.t中内容是 ...
  • 下列叙述中,不属于软件需求规格说明书的作...
  • 在数据流图(DFD) 中,带有名字的箭头表...
  • 为了避免嵌套的if-else的二义性,C语言规...
  • 以下程序的输出结果是 ______。 ma...