练习18
二级C语言必过教程
共 1288字,需浏览 3分钟
·
2021-07-01 18:11
点击蓝字
关注我们
DRAGON BOAT FESTIVAL
练习18
考试规则:点击你认为正确的选项
1.有以下程序
#include
main()
{
int i,s=0,t0={1 ,2,3,4,5,6,7,8,9};
for(i=0;i<9;i+=2)
s+=*(t+i);
printf(%d\n",s);
}
程序执行后的输出结果是( )。
点击答题丨点击选项查看对错丨展开动画
2.设有定义
char strD = "Hello";
则语句
printf("%d %d", sizeof(str), strlen(str));
的输出结果是()。
点击答题丨点击选项查看对错丨展开动画
3.有以下程序:
#include
main()
{
int ijx=0;
for(i=0;i<2;i++)
{
x++;
for(=:j<=3j++)
{
if(%2)
continue;
x++;
}
x++;
}
printf("x=%d\n",x);
}
程序执行后的输出结果是( )。
点击答题丨点击选项查看对错丨展开动画
评论