如何把一个数各数位的数赋值到一个数组上
展开全部
可以自己定义一个函数来完成,举例如下:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
/*本函数将源字符串s中第n个下标开始的m个字符拷入目标t并在最后补'\0'*/
char *myfun(char *t,const char *s,int n,int m){
char *p=t;
if(m){//m为0时特殊处理返回NULL
s+=n;
while(*p++=*s++, --m && *s);
*p='\0';
return t;
}
return NULL;
}
int main(void){//测试一下
char a[10];
char *b="abcdefghi";
printf("%s\n",myfun(a,b,1,3));
return 0;
}
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
/*本函数将源字符串s中第n个下标开始的m个字符拷入目标t并在最后补'\0'*/
char *myfun(char *t,const char *s,int n,int m){
char *p=t;
if(m){//m为0时特殊处理返回NULL
s+=n;
while(*p++=*s++, --m && *s);
*p='\0';
return t;
}
return NULL;
}
int main(void){//测试一下
char a[10];
char *b="abcdefghi";
printf("%s\n",myfun(a,b,1,3));
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询