用C语言编写程序,要求编写函数,将输入字符串的前3个字符移到最后。 函数接口定义: void Shift( char s[] ); 其中char s[]是用户传入的字符串,题目保证其长度不小于3;函数Shift须将按照要求变换后的字符串仍然存在s[]里。 裁判测试程序样例: #include <stdio.h> #include <string.h> #define MAXS 10 void Shift( char s[] ); void GetString( char s[] ); /* 实现细节在此不表 */ int main() { char s[MAXS]; GetString(s); Shift(s); printf("%s\n", s); return 0; } /* 你的代码将被嵌在这里 */ 输入样例: abcdef 输出样例: defabc
时间: 2024-02-17 07:03:23 浏览: 74
C语言实现字符串操作函数的实例
下面是将输入字符串的前3个字符移到最后的函数Shift的代码:
```c
void Shift( char s[] ){
char temp[4];
strncpy(temp, s, 3);
temp[3] = '\0';
memmove(s, s + 3, strlen(s) - 2);
strcat(s, temp);
}
```
注:此处假设输入的字符串长度不小于3,如果不确定字符串长度,可以添加一个判断语句。
阅读全文