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

字符串逆序输出

时间:2017-06-30 10:27:38      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:char s   i++   article   return   pac   get   ack   ace   post   

//字符串逆序输出
#include<stdio.h>
#include<string.h>
int main()
{
char str[50];
char temp;
int i,length=0;
gets(str);
length = strlen(str);
for(i = 0,length--;i <= length/2;length--,i++)
{
temp = str[i];
str[i] = str[length];
str[length] = temp;
}


printf("%s\n",str);
return 0;
}

字符串逆序输出

标签:char s   i++   article   return   pac   get   ack   ace   post   

原文地址:http://www.cnblogs.com/ljbguanli/p/7097573.html

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