인프런 커뮤니티 질문&답변
저는 이렇게 풀어봤습니다.
해결된 질문
작성
·
193
0
#include <stdio.h>
int main{
int n = 0;
scanf("%d", &n);
n = (n + 11) / 12;
printf("%d", n);
return 0;
}
초보자 이지만 다른분들이 참고하기를 바라며 남겨봅니다.
선생님 좋은강의 찍어주셔서 감사합니다 열공하겠습니다.
퀴즈
What function represents the entry point where the execution of a C program begins?
start
run
main
begin





