c语言中的符号不能改吗
#include "stdio.h"void trans(char *p)
{
if(*p != '\0')
trans(p+1);
printf("%c",*p);
}
int main()
{
char a[20];
char *p;
p = a;
printf("请输入字符串:\n");
scanf("%s",p);
trans(p);
}
为什么其中的“*p”中的“*”不能去掉“*p”是什么意思呀
2012-03-29 17:02
2012-03-29 17:06
2012-03-29 17:32
2012-03-29 20:15
2012-03-29 21:37