1、输入一个字符串和一个正整数x,将该字符串中的后x个字符复制到另一个字符串y中,输出字符串y;再对y串的内容前后倒置后存入数组z中并输出。
要求:用指针访问数组元素、用函数getx(char *c1)实现复制、用函数getr(char *c2)实现倒置。
运行示例
Enter a string: abcABCD
Enter an integer: 4
The new string is: ABCD
The invert string is: DCBA
//输入一个字符串和一个正整数x,将该字符串中的后x个字符复制到另一个字符串y中,输出字符串y;再对y串的内容前后倒置后存入数组z中并输出。 #include<stdio.h> #include<string.h> #define N 100 void getx(char *c1); //函数getx(char *c1)实现复制 void getr(char *c2); //函数getr(char *c2)实现倒置 int main(void) { char a[N]; puts("请输入一组字符:"); gets(a); getx(a); } void getx(char *c1) { int n,k=0,j=0; char temp[N]; puts("请输入选取个数:"); scanf("%d",&n); //复制开始 while(*(c1+j)!='