#include <stdio.h>int main(){ char a; printf("what is your name?\n"); scanf("%s",&a); printf("hello,%s \n",a); return 0; } 查看完整描述