C语言中规定,不同类型的数据占用存储空间的长度是不同的。下列各组数据中满足占用存储空间从小到大顺序排列的是()。
A. short int , char , float , double
B. char , float , short int , double
C. int , unsigned char , long int , float
D. char , int , float , double
查看答案
以下选项中不正确的整型常量是( )。
A. 12L
B. -10
C. 012
D. 2,900
下面哪组是全部合法的标识符?
A. average2youtom&jerry
B. f(x)a+b_sum
C. andsub_x_money1
D. 'a'dollar$mycup
在C程序中如果要使用数学函数,如sin(x),log(x)等,需要在程序中加入的语句是
A.
B. define
C. B.
D. include
E. C.
F. include
G. D.
H. define
设有以下定义,则下面给出的语句中错误的是( )。int a=0;float b=1.25;charc='A';
A. a++;
B. b++;
C. (-a)++;
D. c++;