谭浩强书上的一道题
写一个函数,求字符串长度#include "stdio.h"
int long(char *a)
{
int l=0;char *p;
for(p=a;(*p)!='\0';p++)
if((*p)!=' ') l++;
return l;
}
main()
{
char a[80];
int length;
gets(a);
length=long(a);
printf("The length of the string is: %d\n",length);
}
按理讲应该很简单 谁知道编译出错 第2行"Declaration syntax error"
请问为什么....