【练习】 题目要求: 所给字符串正序和反序连接,形成新串并输出 例如: 输入:123abc 输出:123abccba321 #include <stdio.h> #include <string.h> int main() { int i; char a[100];