get_positive_int 함수를 만들 때 int get_positive_int(void)를 가장 먼저 쓰잖아요. 함수이름(get_positive_Int) 앞에 'int'를 쓰는 것은 출력값으로 정수(여기서는 n)를 받기 위함인 것 알겠고, 특정 입력값을 넣지 않은 상태에서 사용자에게 입력값을 입력하게끔 하기 위해 함수이름 뒤에 (void)로 쓴 것도 알겠어요. 그런데 아래 캡쳐에서 보이는 것처럼 main 함수에서 함수이름 뒤 괄호에 void도 쓰지 않고 ()를 공백으로 남겨둔 건가요?
int i = get_positive_int();
comment