数字字符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
第1题:
数字字符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
第2题:
数字字符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
第3题:
19、数字字符0的ASCII值为48,若有以下程序 main() { char a='a',b='b'; printf("%c,",b++); printf("%d\n",b-a); } 程序运行后的输出结果是
A.0,2
B.c,2
C.b,2
D.2,50
第4题:
数字字符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
第5题:
数字字符'0'的ASCII值为48,若有以下程序: #include <stdio.h> 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