编写一个函数void shift(char*s,int n),要求将字符串s循环左移你次。例如,字符串“hello”,左移三次得到“lohel”。
编写一个函数void shift(char*s,int n),要求将字符串s循环左移你次。例如,字符串“hello”,左移三次得到“lohel”。
收起
#include<stdio.h>
#include<string.h>
void leftloop(char *a, int n);
int main()
{
char a[100] = "hello";
int n = 3;
leftloop(a,n);
printf("输出已经循环左移的字符串:%s\n",a);
return 0;
}
void leftloop(char*a,int n)
{
char b[100];
int m=strlen(a)-n;
strcpy(b,a+n);
strcpy(b+m,a);
*(b+strlen(a))='\0';
strcpy(a,b);
}
输出已经循环左移的字符串:lohel
能解释一下下面三个strcpy函数的作用嘛?😭😭
报告相同问题?