将数组s1中的字符串复制到数组s2中

  • Post author:
  • Post category:其他


#include"stdio.h"
#include"string.h"
#define N 81
void Strcopy(char s2[],char s1[])
{
	int i,j;
	i=0;j=0;
	while(s2[j++]=s1[i++]);
}
int main(void)
{
	char s1[81];
	char s2[81];
	printf("请输入字符串:");
	gets(s1);
	//复制字符串
	Strcopy(s2,s1);
	printf("数组s2的值为:");
	puts(s2);
	return 0;
}



版权声明:本文为qq_42727102原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。