-Visual studio 설치하기 (3분)

-hello world 출력 code 작성 (3분)

#include <stdio.h>

int main(void)
{
	printf("Hello world\n");
    return 0;
}
복사했습니다!