码迷,mamicode.com
首页 > 其他好文 > 详细

面试记录06:输入字符串,采用指针,逆序输出。

时间:2020-07-04 01:26:19      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:include   char   指针   ptr   turn   clu   class   while   print   

 1 #include <stdio.h>
 2 #include <string.h>
 3 
 4 char *strconv(char *p)
 5 {
 6     int length = strlen(p) ;
 7     char *ptr = p ;
 8     char *ptr_1 = p+length - 1;
 9     while(ptr < ptr_1)
10     {
11         char c = *ptr ;
12         *ptr = *ptr_1 ;
13         *ptr_1 = c ;
14         ++ptr ;
15         --ptr_1 ;
16     }
17     return p ;
18 }
19 
20 int main(void)
21 {
22     char str[]="abcdef1234" ;
23     char *p;
24     p = strconv(str);
25     printf("%s",p);
26     return 1;
27 }

 

面试记录06:输入字符串,采用指针,逆序输出。

标签:include   char   指针   ptr   turn   clu   class   while   print   

原文地址:https://www.cnblogs.com/cogito/p/msjl06.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!