ubuntuでcを実行する

$ cat /etc/os-release
NAME=”Ubuntu”
VERSION=”18.04.4 LTS (Bionic Beaver)”

gccはc言語用のコンパイラ
GNU Compiler Collectionの略

$ gcc –version
gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ sudo apt-get install build-essential

#include <stdio.h>

int main(void){
	printf("hello world!\n");
	return 0;
}

// コンパイル時に-oオプションを使うことで、実行形式ファイルの名前を指定
$ gcc -o hello hello.c
$ ls
hello hello.c
// ./実行形式ファイルパスで実行
$ ./hello
hello world!