#include#include int main() { char str[] = "abcde"; char temp[] = ""; int i, j; for(i = 0; i<5; i++) { temp[i] = str [4-i]; } strcpy(str, temp); printf("%s\n",str); } 结果: # gcc test_point.c -o test_point # ./test_point str:edcba
本文共 311 字,大约阅读时间需要 1 分钟。
#include#include int main() { char str[] = "abcde"; char temp[] = ""; int i, j; for(i = 0; i<5; i++) { temp[i] = str [4-i]; } strcpy(str, temp); printf("%s\n",str); } 结果: # gcc test_point.c -o test_point # ./test_point str:edcba
转载地址:http://ivwxx.baihongyu.com/