코딩언어/c언어

(갓코딩)(c언어 2장)Dev-C++ 설치

갓스토어 2020. 12. 15. 14:05

1. Dev-C++ 다운로드

Dev-C++ 다운로드

http://sourceforge.net/projects/orwelldevcpp/

 

Dev-C++

Download Dev-C++ for free. A free, portable, fast and simple C/C++ IDE. A new and improved fork of Bloodshed Dev-C++

sourceforge.net

2. Dev-C++ 설치

다운로드된 파일을 실행하고 korean 선택

 

구성요소를 선택하지 말고 바로 다음 버턴 클릭

 

 

만화가 있는 C:누구에게나 쉬운 만화 C언어 입문서!

COUPANG

www.coupang.com

3. 실행하기

프로젝트(P) 메뉴를 선택

 

새로운 프로젝트 작성

 

Console Application 을 선택하고 프로젝트명을 입력 후 확인 버턴을 선택한다.

 

 

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[]) {
  printf("Hello World");
  return 0;
}

 

 

 

Hello World 출력