If int (*pt) [3] is defined, then the following statement is correct ( ).
A. Three pointer variables with base type int are defined
B. Defines a pointer array pt with three elements whose base type is int
C. An integer array named *pt with three elements is defined
D. A pointer variable named pt is defined, which can point to a two-dimensional array with three integer elements in each row
查看答案
C functions can call each other or main functions.
When calling a parametric function, there is a data transfer relationship between the calling function and the called function.
Variables defined within a function or a compound statement are internal variables, which are called local variables.
Among the function headers listed below, the correct one is ( ).
A. void play(var a:integer,var b:integer)
B. void play(int a,b)
C. void play(int a,int b)
D. sub play(a as integer,b as integer)