单项选择题

有以下程序:
#include<stdio.h>
main()
int y=9;
for(;y>0;y--)
f(y%3==0)printf("%d",--y);
程序的运行结果是______。

A.741
B.963
C.852
D.875421
<上一题 目录 下一题>
热门 试题

单项选择题
以下关于函数的叙述中正确的是______。
A.每个函数都可以被其他函数调用(包括main函数)
B.每个函数都可以被单独编译
C.每个函数都可以单独运行
D.在一个函数内部可以定义另一个函数
单项选择题
有以下程序: #include<stdio.h> main() int i,j; for(i=3;i>=1;i-) for(j=1;j<=2;j++)printf( %d ,i+j); printf( n ); 程序运行的结果是______。
A.2 3 4
B.4 3 2
C.2 3
D.4 5
3 4 5 5 4 3 3 4 3 4
4 5 2 3
相关试题
  • 有以下程序: #include<stdio.h> mai...
  • 有以下程序: struct STU char name[...
  • 有以下程序: #inlucde<stdio.h> mai...
  • 在C语言中,函数返回值的类型最终取决于_...
  • 有以下程序: main() int i,t[][...