单项选择题

在C语言中,下列各选项为不正确的int类型的常数足( )。

A.32768
B.0
C.037
D.0xAF
<上一题 目录 下一题>
热门 试题

单项选择题
若x是int型变量,且有下面的程序段: for(x=3;x<6;x++) printf((x%2)( **%d ):( ##%d n ),x); 此程序段的输出结果是( )。
A.**3
##4
**5
B.##3
**4
##5
C.##3
**4##5
D.** 3##4
**5
单项选择题
以下程序的输出结果是( )。 #include <stdio.h> main() int i; for(i=1;i<5;i++) if(i%2) printf( * ); else continue; printf( # ); printf( $ n );
A.*#*#*#$
B.#*#*#*$
C.*#*#$
D.#*#*$
相关试题
  • 有以下程序: #include <stdio.h> m...
  • 请选出以下程序的输出结果( )。 #incl...
  • 请读程序: #include <stdio.h> fun...
  • 读程序: #include <stdio.h> f(in...
  • 已知字符0的ASCII码为十六进制的30,现...