17
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

UbuntuのC++コンパイルの仕方

Last updated at Posted at 2015-01-25

まずはTerminalでG++をインストールします。

sudo apt-get install G++

でインストールします。

完了したら作成したC++のディレクトリの保存場所に行きます。

Terminalで

cd (保存しているファイル場所)

移動したらTerminalで

g++ -o <保存名> <保存名.cpp>

とするとファイルの中に<保存名>ができます。

実行するにはTerminalで

./<保存名>

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

17
15
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?