博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
栈与递归实例
阅读量:6001 次
发布时间:2019-06-20

本文共 228 字,大约阅读时间需要 1 分钟。

1.#include <stdio.h>

void reverse(char* s)
{
    if( (s != NULL) && (*s != '\0') )
    {
        reverse(s + 1);
        
        printf(" %c", *s);
    }
}
int main()
{
    reverse("12345");
    
    printf("\n");
    
    return 0;
}
2.

 

转载于:https://www.cnblogs.com/wxb20/p/6142422.html

你可能感兴趣的文章
让你变懒的 Android Studio Live Templates
查看>>
Android中关闭DatePicker、TimePicker、NumberPicker的可编辑模式
查看>>
一个钓鱼WiFi的破解
查看>>
oc84--单利
查看>>
RGB 常用颜色对照表
查看>>
ios面试题来一波
查看>>
Supported method argument types Spring MVC
查看>>
9.按键之使用异步通知(详解)
查看>>
MyEclipse配置Maven插件
查看>>
python进行数据分析
查看>>
[转]Oracle trunc()函数的用法
查看>>
监控利器 sysdig - 每天5分钟玩转 Docker 容器技术(79)
查看>>
Mac 安装 Eclipse
查看>>
从头开始编写一个实时嵌入式操作系统的内核(二)
查看>>
如何使用JVisualVM进行性能分析
查看>>
npm run watch-poll 监控css、js 文件更新
查看>>
finecms设置伪静态后分享到微信不能访问怎么处理
查看>>
分享我们必须知道的高速GTX技术
查看>>
linux buff/cache释放
查看>>
大型网站架构之系列
查看>>