编辑代码

#include<stdio.h>
int main()
{
    char *p = {"hello"};
    scanf("%s",p);
    printf("%s",*p);

    return 0;
}