4
10

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 2016-08-25

###1.gcc.vimをインストール!!


 C言語ファイルを実行するにはコンパイラが必要になります。
 なのでgccコマンドを利用するので以下のコマンドでインストールしてください
 sudo apt-get install gcc

 次はファイルを作成するのに欠かせないVimもインストールします。
 sudo apt-get install vim


###2.ファイルをコンパイル


 Vimコマンドで作成したC言語ファイル
 をコンパイルしてエラーがないかを確認します。
 gcc hogehoge.c 


###3.実行


 上記のコマンドでコンパイルして、何も出てこなければエラーはないということです。
 エラーがないことを確認したら以下のコマンドで実行してください
 ./a.out


###追記


   コメント欄でVimだけで出来る  もっと便利な方法を教えていただいたので書いておきます。

 Vimコマンドでファイルを作成して、
 gccコマンドを利用しなくても以下のVimコマンド(コマンドモード)
 でコンパイル、実行ができます。

 : !gcc
 : !./a.out

 他のコンパイル方法(コメントから)
 :make hogehoge.c



4
10
4

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
4
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?