echo.c 137 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 #include <stdio.h> int main() { char Name[20]; printf("당신의 이름을 입력하세요: "); gets(Name); puts(Name); return 0; }