数字字符0的ASCII值为48,运行以下程序的输出结果是( )。
main( char a=1,b=2;
printf("%C,",b++);printf("%d\n",b—a);}
A.3,2
B.50,2
C.2,2
D.2,50
[单选题]数字字符0的ASCII值为48,运行下列程序的输出结果是( )。 main() { char a='1',b='2'; printf("%c,",b++); printf("%d/n",b-A); }A.3,2B.50,2C.2,2D.2,50
[单选题]数字字符0的ASCII值为48,运行下列程序的输出结果是( )。A.)3,2B.)50,2C.)2,2D.)2,50
[主观题](C语言)数字字符0的ASCII值为48,若有以下程序main(){char a='1',b='2';printf("%c,",b++);printf("%d/n",b-a);}程序运行的输出结果是A.3,2B、50,2C、2,2D、2,50
[单选题]数字字符0的ASCII值为48,若有以下程序 main() { char a='1',b='2'; printf("%c,",b++); printf("%d/n",b-A) ; } 程序运行后的输出结果是A.3,2B.50,2C.2,2D.2,50
[单选题]数字字符0的ASCII值为48,若有以下程序: main() { char a='1',b='2'; printf("%c,",b++); printf("%d/n",b-a); } 程序运行后的输出结果是 ______。A.3,2B.50,2C.2,2D.2,50
[单选题]数字字符0的ASCII值为48,若有以下程序 main(){ char a='1',b='2'; printf("%c,", b++); printf("%d/n", b-A) ;} 程序运行后的输出结果是A.3,2B.50,2C.2,2D.2,50
[单选题]数字字符0的ASCⅡ值为48,若有以下程序 main() {char a='1',b='2'; printf("%c",b++); printf ("%d/n",b-a); } 程序运行后的输出结果是 ______。A.32B.502C.22D.2,50
[单选题]数字字符0的ASCⅡ值为48,若有以下程序: main() { char a='1',b='2'; printf("%c,",b++); printf("%d/n",b-A); } 程序运行后的输出结果是( )。A.3,2B.50,2C.2,2D.2,50
[单选题]以下程序运行后,输出结果是______。 main() {char ch[2][5]={"693","825"},*p[2]; int i,j,s=0; for(i=0;i<2;i++)p[i]=ch[i]; for(i=0;i<2;i++) for(j=0;p[i][j]>='0'&&p[i][j]<='9';j+=2) s=10*s+p[i][j]-'0'; printf("%d/n",s); }A.6385B.22C.33D.693825
[单选题]下列程序运行后,输出结果是______。main(){ char ch[2][5]={"693","825"),*p[2]; int i,j,s=0; for (i=0;i<2;i++) p[i]=ch[i]; for (i=0;i<2;i++) for (j=0;p[i][j]>='0' &&p[i][j]<='9';j+=2) s=10*s+p[i][j]-'0'; printf("%d/n",s);}A.6385B.22C.33D.693825