问题遇到的现象和发生背景
用代码块功能插入代码,请勿粘贴截图
#include <stdio.h>
#include <conio.h>
#include <string.h>
void fun(char *p)
{
int n=0;
while(*p++)
{
n++;
}
p-=2;
while(n--)
{
printf("%c",*p--);
}
}
int main()
{
char str[100]={0};
gets(str);
fun(str);
_getch();
return 0;
}