急需答案
有以下程序int f(char *s)
{char *p=s;
while(*p!=0);
return(p-s);
}
void main()
{printf("%d\n",f("hello!"));
}
输出结果是
6
5
0
7 0 #include<stdio.h>
int f(char *s)
{char *p=s;
while(*p!=0)//这里的;应该没有的吧,否则死循环了
return(p-s);
}
void main()
{printf("%d\n",f("hello!"));
}
页:
[1]