题库 第6481页
若有定义和语句:
若有定义和语句: int a; char c; float f; scanf("%d,%c,%f",&a,&c,&f); 若通过键盘输入: 10,A,12.5 则a=10,c='A',f=12.5。 ~@[](1)答案:TRUE…
在 C 语言程序中 , 凡是没有出现存储类说明符的变量都是自动类的。
在 C 语言程序中 , 凡是没有出现存储类说明符的变量都是自动类的。 ~@[](1)答案:TRUE…
凡在函数中未指定存储类别的局部变量,其默认的存储类别为static。
凡在函数中未指定存储类别的局部变量,其默认的存储类别为static。 ~@[](1)答案:FALSE…
There is a declaration statement as following:
There is a declaration statement as following: ``` int* p, q; ``` Accordingly, variables `p` and `q` both are pointers…
After executing `int *p`; pointer variable `p` only point to int
After executing `int *p`; pointer variable `p` only point to integer variable. ~@[](1)答案:TRUE…
To declare` int a[10] , * p=a`, both statements `p = a+1` and `a
To declare` int a[10] , * p=a`, both statements `p = a+1` and `a = a+1` are valid. ~@[](1)答案:FALSE…
If there is declaration` int a[] = {2,4,6,8,10}, *p= a;` a 's va
If there is declaration` int a[] = {2,4,6,8,10}, *p= a;` a 's value is the first address of the array, then` *(p++)`'s v…