题目内容

下面程序的输出结果是()#include void main ( ){ char ch[7]=”12ab56”;int i,s=0;for (i=0;ch[i]>’0’&&ch[i]<=’9’;i+=2)s=10*s+ch[i]-‘0’;printf(“%d\n”,s);}

A. 1
B. 1256
C. 12ab56
D. ab

查看答案
更多问题

字符串”ab\n\\012\\”的长度是()。

下面程序段的运行结果是()。char x[ ]=”the teacher”;int i=0;while (x[++i]!=’\0’)if (x[i-1]==’t’) printf(“%c”,x[i]);

C语言数组的下标总是从()开始,不可以为负数;构成数组各个元素具有相同的()。

下面程序的运行结果是()#includevoid main ( ){ int i=0;char a[ ]=”abm”, b[ ]=”aqid”, c[10];while (a[i]!=’\0’ && b[i]!=’\0’) {if (a[i]>=b[i]) c[i]=a[i]-32 ;else c[i]=b[i]-32 ;i++;}c[i]=’\0’;puts(c);}

答案查题题库