请大家帮我看一下这个toi函数定义哪里有问题。
# include<stdio.h>void main()
{
int toi( char *pcString )
{
int wint=0;
for (;*pcString>='0'&&*pcString<='9';pcString++)
{
wint=10*wint+(*pcString-'0');
}
return wint;
}
char *s;
int t;
*s='3';
t=toi(s);
printf("%d",t);
}