(C语言)逆序输出字符串

#include
#include
int  main()
{
	int i;
	char s[100];
	scanf("%s",&s);
	int count = strlen(s);
	for(int i = count -1;i >= 0; i --)
		printf("%c",s[i]);
	return 0;
 } 

代码运行截图:

(C语言)逆序输出字符串_第1张图片

注:侵权可删 

你可能感兴趣的:(c语言,算法)