题目内容

When an array name is used as a function actual parameter, the value of the first element of the array is passed.

查看答案
更多问题

The array name represents the address of the first element of the array.

The function of following function is ( ) .fun(char *a,char *b) { while((*b=*a)!='\0') { a++; b++; } }

Assign the string pointed by a to the space pointed by b
B. Make pointer b point to the string poited by a
Compare the string pointed by a with the string pointed by b
D. Check if there is '\0 'in the string indicated by a and b

int *p[4]; Define a one-dimensional pointer array

A pointer cannot point to a pointer variable.

答案查题题库