编函数,将字符串中存放的短整型正数转换成对应的短整型数作为返回值。假定字符串中存放的是正确的短整型正数。
short f(char s[]) { short x=0; char*p=s; while(*p!='\0') { x=x*10+(*p-'0');p++;} return(x); }
编函数,将字符串中存放的短整型正数转换成对应的短整型数作为返回值。假定字符串中存放的是正确的短整型正数。
short f(char s[]) { short x=0; char*p=s; while(*p!='\0') { x=x*10+(*p-'0');p++;} return(x); }