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

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

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

int main(void)
{
    int a = 0;
    if(a != 10)
    {
        printf("개발은 재밌다\n");
         continue;
    }  
}