-->
当前位置:首页 > 题库

题库 第6481页

  • 最新
  • 浏览
  • 评论

若有定义和语句:

Luz5年前 (2021-05-10)882
若有定义和语句: 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语言的三种循环可以互相嵌套。

Luz5年前 (2021-05-10)1175
C语言的三种循环可以互相嵌套。 ~@[](1)答案:TRUE…

在 C 语言程序中 , 凡是没有出现存储类说明符的变量都是自动类的。

Luz5年前 (2021-05-10)1739
在 C 语言程序中 , 凡是没有出现存储类说明符的变量都是自动类的。 ~@[](1)答案:TRUE…

凡在函数中未指定存储类别的局部变量,其默认的存储类别为static。

Luz5年前 (2021-05-10)1470
凡在函数中未指定存储类别的局部变量,其默认的存储类别为static。 ~@[](1)答案:FALSE…

变量的类型通常指存储类和数据类型两种。

Luz5年前 (2021-05-10)1175
变量的类型通常指存储类和数据类型两种。 ~@[](1)答案:TRUE…

用typedef可以增加新类型。

Luz5年前 (2021-05-10)1059
用typedef可以增加新类型。 ~@[](2)答案:FALSE…

There is a declaration statement as following:

Luz5年前 (2021-05-10)1248
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

Luz5年前 (2021-05-10)1101
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

Luz5年前 (2021-05-10)1208
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

Luz5年前 (2021-05-10)1510
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…