文章列表
引用一个函数需要先申明,这就是为什么别人会把main函数写在后面,见下例:
/********编译出错**************************/
int mian(void)
{
char ch,str[80],*p = NULL;
printf("Please input the string:\n");
scanf("%s",str);
getchar();
ch = getchar();
if(p = match(str,ch) != NULL) //error:‘mat ...