博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C 把一个字符串倒序输出
阅读量:5944 次
发布时间:2019-06-19

本文共 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/

你可能感兴趣的文章
《C++ Primer》 Part III(Classes and Data Abstraction)
查看>>
FriendlyUrls——在ASP.NET Web表单中使用更友好的URL
查看>>
NodeJs新手学习笔记之工具准备
查看>>
SQL ExecuteNonQuery()的返回值
查看>>
【函数】strcpy源代码
查看>>
【javascript】字符串对象常用 api
查看>>
对PostgreSQL中 index only scan 的初步理解
查看>>
poj 2337 Catenyms
查看>>
PypeR
查看>>
新浪微博布局学习——活用RelativeLayout
查看>>
第46周星期二
查看>>
Tomcat虚拟子目录
查看>>
REVIT参数化有什么意义
查看>>
将python3.1+pyqt4打包成exe
查看>>
解释器中对 标号 的使用
查看>>
分享:FireBreath 1.7.0 RC1 发布
查看>>
<<Information Store and Management>>读书笔记 之五
查看>>
2012年50个顶级的photoshop教程:(一)图形绘画类
查看>>
数据库和c#类型映射
查看>>
(转)swc与swf的区别
查看>>