In C, the default storage category for a foraml parameter is ( ).
A. auto
B. register
C. static
D. extern
查看答案
To "pass" a string from one function to another, only character array names can be used as actual and formal parameters
int x=3; main() { int i; for (i=1;i
A. 3 3
B. 2 2
C. 2 6
D. 2 5
The address (the address of the first character of the string) is stored in the character pointer variable.
The correct one in the following statement groups is ( )
A. char *s;s="Olympic";
B. char s[7];s="Olympic";
C. char *s;s={"Olympic"};
D. char s[7];s={"Olympic"};