求助 关于字符串指针 这代码哪出错啦?
#include <stdio.h>int mystery2(const char *);
void main()
{
char string[80];
printf("Enter a string:");
scanf("%s", string);
printf("%d\n", mystery2(string));
return ;
}
int mystery2(const char *)
{
int x = 0;
for(; *s != '\0'; s++) {
++x;
}
return x;
}
这代码哪错了?