编写一个函数 输入一串字符 函数实现反转输出(图)

编写一个函数 输入一串字符 函数实现反转输出(图)_第1张图片

#include "stdAfx.h"
#include "ctype.h"
#include "stdlib.h"
#include "string.h"

int main()
{
	void con(char word[]);
	char name[41];

	gets(name);
	con(name);

	system("pause");
	return 0;
}

void con(char word[])
{
	int i=0,z;

	while(word[i++])
		z=i;
	for(i=z-1;i>=0;i--)
		printf("%c",word[i]);

	putchar('\n');
}


你可能感兴趣的:(c,System,include)