char* txt = ""; //char*형 text 선언


scanf("%s", &txt); //문자열을 받음



txt = new char;

delete txt;