Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.26 KB

1_Environment.md

File metadata and controls

57 lines (38 loc) · 1.26 KB

1. C言語環境構築(Ubuntu gcc)

UbuntuにおいてC言語の環境を作る。

Windowsにおいてgccを使う場合はMinGWやCygwinなどの手段もあるが現在ではWSLという手段があるのでそちらを参考にされたし。WSLに関しては別ドキュメントで説明する。

インストール

いつも通りaptを使う

apt install gcc

コンパイル

サンプルとして以下のコード(sample.c)を用意する。

// sample.c
#include <stdio.h>

int main()
{
	printf("Hello World\r\n");
	return 0;
}

Terminalから以下のようにファイルを指定する。

gcc -o sample.out sample.c

-oオプションで出力ファイル名をsample.outと指定している。-oと指定しない場合はa.outが出力される。

./sample.out

で実行することができる。


次のセクション "2. makefile" へ


Back to Home