下列整数定义中,错误的是______。A) int f=314;B) int a=012;C) int i=189;D) int d=0x123;
下列整数定义中,错误的是______。
A) int f=314;
B) int a=012;
C) int i=189;
D) int d=0x123;
相关考题:
已知程序中已经定义了函数test,其原型是int test(int,int,int);,则下列重载形式中正确的是A.char test (int,int,int);B.double test(int,int,double);C.int test(int,int,int=O);D.float test(int,int,float=3.5F);
已知程序中已经定义了函数test,其原型是int test(int, int, int);,则下列重载形式中正确的是A.char test(int,int,int);B.double test(int,int,double);C.int test(int,int,int=0);D.float test(int,int,float=3.5F);
已知程序中已经定义了函数test,其原型是int test (int,int,int);,则下列重载形式中正确的是( )。A.char test(int, int, int);B.double test (int,int,double);C.int test(int ,int, int=0);D.float test(int,int,float=3.5F);
下列整数的定义中,错误的是( )。 A.int f=314.;B.int a=012;C.int i=189;S 下列整数的定义中,错误的是( )。A.int f=314.;B.int a=012;C.int i=189;D.int d=0x123;
给定函数原型如下: int* f(int *p); 而另有变量定义如下: int i; 哪个对函数的调用是错误的?A.f((i+6));B.f(i);C.*f(i) = 6;D.int* p = f(i);
给定函数原型如下: int* f(int *p);而变量定义如下: int i;A.f((i+6)); B.f(i); C.*f(i) = 6; D.int* p = f(i);