单项选择题
有以下程序:
#include <stdio.h>
main( )
char s[ ] ="159" , * p;
p=s;
printf( "% c", * p + + );
printf("%~", * p++);程序运行后的输出结果是( )。
A.15
B.16
C.12
D.59
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
以下不能定义为用户标识符的是( )。
A.Main
B._0
C._int
D.sizeof
点击查看答案&解析
单项选择题
有定义语句:int b;char c[10] ;则正确的输入语句是( )。
A.seanf("%d%s" ,&b,&c);
B.scanf("%d%s",&b,c);
C.seanf("%d%s",b,c);
D.scanf("%d%s",b,&c);
点击查看答案&解析
相关试题
有以下程序: #include <stdio.h> ...
有以下程序: #include <stdio.h> m...
有以下程序:#include <stdio.h>int ...
有以下程序: #include<stdio.h> voi...
有以下程序:#include <stdio.h>void...