The method of C language function pointer passing two

Disclaimer: This article is a blogger original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement.
This link: https://blog.csdn.net/qq_36561697/article/details/89930683
char a[10][10];
void point(char p[][10]);



char *dir[WORDLEN];
for (int i=0; i<WORDNUM; i++){
	dir[i] = (char *)malloc(WORDLEN);
}

void point(char*p[]);

 

Guess you like

Origin blog.csdn.net/qq_36561697/article/details/89930683