From the perspective of variable scope, it can be divided into static variables and dynamic variables.
查看答案
All global variables are stored in static storage.
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