![]() |
#2
纯蓝之刃2020-04-13 12:55
|
#include<stdio.h>
int main()
{
char *p;
gets( p);
printf("%s" , p);
p = "你好";
printf("%s" , p);
return 0;
}