로그인 바로가기 하위 메뉴 바로가기 본문 바로가기
난이도
입문

모두를 위한 컴퓨터 과학 (CS50 2019)

임시 이미지 David J. Malan (데이비드 J. 말란)
http://www.boostcourse.org/cs112/forum/48399
좋아요 15504 수강생 34435
# include <cs50.h>
# include <stdio.h>

int main(void)
{
    int age = get_int("what's your age?\n");
    int days = age * 365;
    printf("Your are at least %i days old.\n", days);
}

-------------------------------------------------------------------

$ clang age.c

/tmp/age-cd7f64.o: In function `main':
age.c:(.text+0x15): undefined reference to `get_int'
clang: error: linker command failed with exit code 1 (use -v to see invocation)

컴파일이 안 됩니다. 

어디가 문제인가요?