设y为int型变量,描述“y是奇数”的表达式是____。
查看答案
在scanf( )函数中格式符x用于输入____。
若有定义:int a=2, b=3; float x=3.5, y=2.5;则下面表达式的值为____。(float)(a+b)/2+(int)x%(int)y
若有定义:int b=7; float a=2.5,c=4.7;则下面表达式的值为____。a+(int)(b/3*(int)(a+c)/2)%4
以下程序的执行结果是____。#includemain(){int x=042, y=067, z;z=(x>>2) & (y<<3);printf(“%d\n”,z);}