若有定义: float w=2.0F; int a=0, b=0; 则合法的switch语句是:
举一反三
- 若有定义 float w; int a, b; ,则合法的 switch 语句是 ( )
- 若有如下定义语句:int x;则经过( )后,语句*px=0;,可将x值置为0。 A: int *px; B: int *px=&x; C: float *px; D: float *px=&x;
- 若有定义: float x=1.5; int a=1,b=3,c=2; 则正确的switch语句是()。
- 如果定义:float b; int*p,a=0;那么语句“p=&b”是合法的
- 若有定义语句“inta,b;”则合法的C语句是()。 A: a=b=1 B: b++; C: b=int(x); D: a=0,b=1,