// string.cpp : 定义控制台应用程序的入口点。
//递归反向输出字符串的例子
#include "stdafx.h"
#include <stdio.h>
void inverse(char *str)
{
if (*str!='\0')
inverse(str+1);
printf("%c",*str);
}
int _tmain(int argc, _TCHAR* argv[])
{
inverse("hello the world");
return 0;
}
递归反向输出字符串
最新推荐文章于 2022-01-01 20:13:07 发布