1
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?

More than 3 years have passed since last update.

【C】コンパイル手順

Last updated at Posted at 2021-04-04

ファイルのパスをコピーする

[Windows] Shift + 右クリック → パスのコピー(A) [Mac] Command + option + C

コンパイル

####コマンドプロンプトで実行させる場合 gcc test.c a.exe

####ターミナルで実行させる場合
cd ファイルの存在するファイルパス
gcc ファイル名.c
[Windows] .\a
[Mac] ./a.out

コマンドプロンプトで文字化けする時の対処

"chcp"と入力して,現在のコード ページ: 932 と出たら,文字コードはShift_JISであることがわかる。 "chcp 65001"と入力することで,文字コードがUTF-8に変更される。

Macでの改行

Macでは”¥n”では改行されずに,文字列¥nとして出力される。 ¥n→\nにすることで解決される。 \ = Option + ¥
1
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
1
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?