下面不属于声明的是________。
A: typedef unsigned int uint;
B: class Dog;
C: int theFunc( int );
D: float b = 2.5;
A: typedef unsigned int uint;
B: class Dog;
C: int theFunc( int );
D: float b = 2.5;
举一反三
- 下面哪个不属于声明标识符 A: extern const int c; B: enum { up, down }; C: struct S; D: typedef int Int;
- #define uint unsigned int表示定义uint为( )型。
- 以下描述中不属于C语言的类型的是________。 A: signed<br/>short int B: unsigned<br/>long int C: unsigned<br/>int D: long<br/>float
- 下列定义形式中,( )是非法的 A: class A{int a,b;…} B: class A{int i,j;i=j=10;…} C: class A{int a;float f;…} D: class A{int a=12;float f=1.2f;…}
- 下面的函数声明,( )是void fun(int a,int b);的重载函数。 A: void fun(int a,int b); B: int fun(int ,int ); C: float fun(int a,int b); D: void fun(float x,float y,float z);