單項選擇題若有定義,int*f();則下列描述中正確的是()。

A.一個用于指向整型數(shù)據(jù)的指針變量
B.一個用于指向一維數(shù)組的指針
C.一個用于指向函數(shù)的指針變量
D.一個返回值為指針型的函數(shù)名


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題關(guān)于C語言中print()函數(shù)與scanf()函數(shù),下列描述中正確的是()。

A.printf()函數(shù)可以向任何地方輸出數(shù)據(jù)
B.printf()只向控制臺輸出數(shù)據(jù)
C.scanf()只能輸入英文字母和數(shù)字
D.scanf()函數(shù)可以識別輸入的空格

2.單項選擇題C語言中下面哪個不是循環(huán)語句?()

A.do while
B.if
C.while
D.for

3.單項選擇題下列關(guān)于指針說法的選項中,正確的是()。

A.指針是用來存儲變量值的類型
B.指針一旦定義就不能再指向別的變量
C.指針當中存儲的是變量的內(nèi)存地址
D.指針一旦定義必須要指向某一個變量

5.單項選擇題下面程序中,運行結(jié)果為“1,2”的是()。

A.<include <stdio.h>int main(){int a =1;int b =2;printf("%d %d\n",a,b);return 0;}
B.<include <stdio.h>int main(){int a =1;int b =2;printf("%d,"a);printf("%d\n",b);return 0;}
C.<include <stdio.h>int main(){int a =1,b =2;printf("%d,,%d\n",a,b);return 0;}
D.<include <stdio.h>int main(){int a =1,a=b =2;printf("%d,%d\n",a,b);return 0;}