题目内容

Which is the obtaining address operator in C ?

A. &
B. *
C. ->
D. .

查看答案
更多问题

What is the indirection operator?

A. &
B. *
C. ->
D. .

What dimensional array can be viewed as a book of data tables?

A. one
B. two
C. three
D. four

Arrays can be declared either within or outside a function.

Which declares an array of three rows and four columns?

A. int val[3,4];
B. int val[4,3];
C. int val[3][4];
D. int val[4][3];

答案查题题库