字符串逆序

旧城冷巷雨未停 提交于 2020-03-08 19:15:07
 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #include <string.h>
 4 int main()
 5 {
 6     char *src="hello,world";
 7     char *dest,*d,*p;
 8     int len,i;
 9     len=strlen(src);
10     dest=(char *)malloc(len+1);
11     p=&src[len-1];
12     d=dest;
13     while(len--!=0)
14         *d++=*p--;
15         //*(d++)=*(p--);
16     *d='\0';
17     printf("%s",dest);
18     return 0;
19 }

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!