每日一练:字符数组
/******************************************************************************************使用数组,编写一个字符串整数转换为十进制数的转换函数。
*******************************************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
int len,i,s1 = 1,s2 = 0;
char s[255];
printf("please input the number:\n");
scanf("%s",s);
len = strlen(s);
for(i = len;i > 0;i--)
{
s2 = s2 + (s[i - 1] - '0') * s1;
s1 *= 10;
}
printf("s2 == %d\n",s2);
return 0;
}