单项选择题

有以下程序
  main( )
  { int x=3, y=2, z=1;
   printf("%d\n",x/y&~z);
  }
程序运行后的输出结果是()

A.3
B.2
C.1
D.0

<上一题 目录 下一题>
热门 试题

单项选择题
以下不能定义为用户标识符的是
A.scanf
B.Void
C._3com_
D.int
单项选择题
以下选项中不能正确把cl定义成结构体变量的是
A. typedef struct   { int red;    int green;    int blue;   } COLOR;      COLOR cl;
B.struct color cl   { int red;   int green;    int blue;   }
C.struct color   { int red;   int green;   int blue;   } cl;
D.struct   { int red;    int green;    int blue;   } cl;
相关试题
  • 十六进制数100转换为十进制数为
  • 已定义以下函数 fun(int *p) { ret...
  • 有以下程序 #include <stdio.h> mai...
  • 若有定义:int *p[3];,则以下叙述中...
  • 以下不能正确定义二维数组的选项是