반응형

[MacOS 개발환경 #20] C언어 Atom 실행

 

1. C언어 Atom 실행

2. 개발환경

    2.1. 개발환경

3. gpp compiler 설치

    3.1. gpp compiler 설치

4. 결과

    4.1. Hello World

    4.2. 결과화면

 

 

1. C언어 Atom 실행

Atom 편집기에서 C 프로그램 실행

 

 

2. 개발환경

 

2.1. 개발환경

MacOS M1 - macOS Monterey 12.0.1

 

 

3. gpp-compiler 설치

 

3.1. gpp-compiler 설치

Atom > Preferences ... (⌘ ,) > Settings > + Install > gpp compiler 검색 > install

 

 

4. 결과

 

4.1. Hello World

Hello World > 우클릭 > Compile and Run (F5): 실행

1
2
3
4
5
6
#include <stdio.h>
 
int main() {
    printf("Hello World\n");
    return 0;
}

 

 

우클릭 > Compile and Run (F5): 실행

 

 

4.2. 결과화면

 

 

반응형