while(fgets(str, sizeof(str),stdin) != NULL)
fgets : 문자열 공백포함 입력
문자열 공백포함 입력방법 1. scanf("%[^\n]s", str); 2. fgets(str, sizeof(str), stdin);