임에딘

push the echo program

Showing 1 changed file with 9 additions and 0 deletions
#include <stdio.h>
int main() {
char Name[20];
printf("당신의 이름을 입력하세요: ");
gets(Name);
puts(Name);
return 0;
}
\ No newline at end of file