Array element as actual paramenter of function, passing the first address of array.
查看答案
Array name can also be used as actual parameter and formal parameter of function.
#include#define N 4 void fun(int a[][N], int b[]) { int i; for(i=0;i
A. 1,2,3,4,
B. 1,0,7,0,
C. 1,4,5,9,
D. 3,4,8,10,
Each element in the character array holds only one character.
If an array of characters contains more than one '\0', when encounter the first '\0' output will end.