C语言实现对字符串的逆序输出

Description
编写一个函数,功能是使输入的字符串逆序输出。
Input
输入一串字符串,注意字符串中不要有空格。
Output
输出该字符串的逆序。

下面小编在为大家输出改字符串的长度,代码如下:

#include 
#include 
void main(){
	char ch[20],t;
	int i,len;
	printf("Please input: ");
	gets(ch);                               //忽略空格
	//scanf("%s", ch);                      //遇到空格就结束
	printf("Before string is: ");
	puts(ch);
	len=strlen(ch);
	for(i=0;i

版权声明:本文为博主原创文章,未经博主允许不得转载。https://blog.csdn.net/qq_42680327

你可能感兴趣的:(C语言)