选择题结构化程序设计中, 下面对 goto 语句使用描述正确的是
选择题以下关于 C 语言函数参数传递方式的叙述正确的是( )
选择题以下数组定义中错误的是( )
选择题C 语言主要是借助以下哪种手段来实现程序模块化?
选择题有以下程序:
#include <stdio
选择题下列叙述中正确的是
选择题以下叙述中正确的是
选择题有如下程序:
#include
main()
{
int i;
for (i=0;i5;i++)
putchar(9-i);
printf(\n);
}
程序运行后的输出结果是( )
选择题以下叙述中正确的是( )
选择题深度为 7 的完全二叉树中共有 125 个结点, 则该完全二叉树中的叶子结点数为( )
选择题有以下程序:
#include <stdio
选择题设有两行定义语句:
int scanf;
float case;
则以下叙述正确的是( )
选择题以下叙述中错误的是( )
选择题有以下程序:
程序运行后的输出结果是( )。
选择题以下能正确表述算式 sin(2r+30)的 C 语言表达式是( )
选择题有以下程序:
#include <stdio
选择题有以下程序段:
若指定文件 test. txt 不存在, 且无其他异常
选择题有两个关系 R 和 T 如下:
则由关系 R 得到关系 T 的操作是( )。
选择题有以下程序
#include
main()
{
int a=-1, b=-1;
for(; ++a;)++b;
printf(%d,%d\n, a, b);
}
程序运行后的输出结果是( )
选择题有以下程序(strcpy 为字符串复制函数, strcat 为字符串连接函数):
#include
#include
main()
{
char a[10] =abc,b[10]=012,c[10]=xyz;
strcpy(a+1,b+2);
puts(strcat(a,c+1));
}
程序运行后的输出结果是( )
