程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 字符串反轉---指針,反轉---指針

字符串反轉---指針,反轉---指針

編輯:關於C語言

字符串反轉---指針,反轉---指針


 

 1 #define _CRT_SECURE_NO_WARNINGS
 2 #include<stdio.h>
 3 #include<stdlib.h>
 4 #include<string.h>
 5 
 6 int inverse(char *str1,char *str2)
 7 {
 8     char *p1 = str1;
 9     char *p2 = str2;
10     while (p1 < p2)
11     {
12         char c = *p1;
13         *p1 = *p2;
14         *p2 = c;
15 
16         ++p1;
17         --p2;
18     }
19     return 0;
20 }
21 int main()
22 {
23     char buf[] = "abcdefg";
24     char *p1 = buf;
25     char *p2 = buf + strlen(buf) - 1;
26     printf("原字符串是:%s\n", buf);
27     inverse(p1, p2);
28     printf("字符串反轉後:%s\n", buf);
29     system("pause");
30     return 0;
31 }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved