0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

WindowsにおけるC言語の環境構築

Last updated at Posted at 2024-12-24

はじめに

本記事では、Windows11においてC言語のプログラムをコンパイルできる環境を構築する。

準備: 7zipのインストール

次のサイトから7zipをダウンロードする。

コンパイラのインストール

次のサイトからgccをダウンロードする。

x86_64-8.1.0-release-posix-seh-rt_v6-rev0.7z を展開し、x86_64-8.1.0-release-posix-seh-rt_v6-rev0\mingw64 フォルダを C:\Program Files ディレクトリへ移動する。

環境変数の設定

Windowsの[環境変数を編集]から次のパスを追加する。
C:\Program Files\mingw64\bin

次のコマンドを実行して、パスが登録されているかを確認する。バージョンが出力されると成功である。

gcc --version

C言語のプログラムを実行できるか、確認するために簡単なサンプルコードを次に示す。このプログラムを実行すると、端末に「Hello World」と出力される。

test.c
#include <stdio.h>

void main()
{
    printf("Hello World\n");
}

上記のプログラムを実行するコマンドは次の通りである。

gcc test.c -o test
./test

参考

https://programsuki.com/devenv-c/#toc2
https://qiita.com/ochx/items/01449d09777187790ee4

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?