Ubuntu20.04にgccをインストールする

2021年9月18日

1.開発パッケージをインストール
# sudo apt install build-essential

2.バージョンを確認

# gcc --version
gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Copyright (C) 2019 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.

3.テストプログラム
# vim test.c

#include <stdio.h>
int main()
{
   printf("study skill ");

  return 0;
}

プログラムをコンパイル
# gcc -o test test.c

プログラムを実行
./test
study skill

Ubuntu 20.04

Posted by arkgame