include<stdio.h>#include<string.h>#include<stdlib.h>void IntToStr(int *i, char *c, int len){//i为整形数组,c为要存放字符串的数组,len为整形数组元素个数 int k; char tmp[10]; for(k=0;k<len;k++) { itoa(i[k],tmp,10); strcat(c,tmp); }}int...
#include <stdio.h>intatoi(chars[])//定义atoi函数,函数()里面的是char类型的数组{inti,n=0;for(i=0;s[i]>='0'&& s[i]<='9';i++) n=10*n+(s[i]-'0');returnn; }/*限定s[i]中的值只能是字符串数字不能是字符串*//*第一次循环的时候:i为0,s[0]='1',n=0; n=10*0+('1'...