- 讲师:刘萍萍 / 谢楠
- 课时:160h
- 价格 4580 元
特色双名师解密新课程高频考点,送国家电网教材讲义,助力一次通关
配套通关班送国网在线题库一套
当运行以下程序时,输入 abcd ,程序的输出结果是 : 【 9 】 。
insert(char str[])
{ int i;
i=strlen(str);
while(i>0)
{ str[2*i]=str[i];str[2*i-1]='*'; i--;}
printf(" % sn",str);
}
main()
{ char str[40];
scanf(" % s",str);insert(str);
}
A) 预处理命令行必须位于 C 源程序的起始位置
B) 在 C 语言中,预处理命令行都以 "#" 开头
C) 每个 C 程序必须在开头包含预处理命令行 : #include
D)C 语言的预处理不能实现宏定义和条件编译的功能
A) 算法正确的程序最终一定会结束
B) 算法正确的程序可以有零个输出
C) 算法正确的程序可以有零个输入
D) 算法正确的程序对于相同的输入一定有相同的结果
A)45
B)20
C)25
D)36
A)7 5 3
B)3 5 7
C)3 6 9
D)7 5 1
A)*pt->y
B)pt->x
C)++pt->x
D)(pt++)->x
A)while((ch=getchar())!='N') printf(" % c",ch);
B)while(ch=getchar()!='N') printf(" % c",ch);
C)while(ch=getchar()=='N') printf(" % c",ch);
D)while((ch=getchar())=='N') printf(" % c",ch);
A)
main()
{ …… x=fun(2,10); …… }
float fun(int a,int b){ …… }
B)
float fun(int a,int b){ …… }
main()
{ …… x=fun(i,j); …… }
C)
float fun(int,int);
main()
{ …… x=fun(2,10); …… }
float fun(int a,int b) { …… }
D)
main()
{ float fun(int i,int j);
…… x=fun(i,j); …… }
float fun(int a,int b){ …… }
A)
#include
main();
{/*programming*/
printf("programming!n");}
B)
#include
main()
{/*/ programming /*/
printf("programming!n");}
C)
#include
main()
{/*/*programming*/*/
printf("programming!n");}
D)
include
main()
{/*programming*/
printf("programming!n");}
课程专业名称 |
讲师 |
课时 |
查看课程 |
---|
课程专业名称 |
讲师 |
课时 |
查看课程 |
---|
点击加载更多评论>>