题目内容
#include
#include
#include
main()
{ char *p; int i;
p=(char *)malloc(sizeof(char)*20);
strcpy(p,"welcome");
for(i=6;i>=0;i--) putchar(*(p+i));
printf("\n "); free(p);
}
查看答案
搜索结果不匹配?点我反馈
更多问题