Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 447 Bytes

gcc.md

File metadata and controls

39 lines (31 loc) · 447 Bytes

Gcc

C, C++, Objective-C, Fortran, Ada, Go, and D 언어를 컴파일 할 수 있는 컴파일러 입니다.

설치

$ su
# yum install gcc

테스트 코드작성

$ cd ~
$ vim hello.c

hello.c

#include <stdio.h>
int main()
{
   // printf() displays the string inside quotation
   printf("Hello, World!\n");
   return 0;
}

코드 컴파일과 실행

$ gcc hello.c
$ ./a.out

Output

Hello, World!