2
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.

MacでC言語の改行コード使う場合の書き方

Last updated at Posted at 2020-03-22

MacのC言語での改行コード使おうとしたときにハマったこと

  • 改行コードは、¥だった気がしたのだが、Macだと改行できなくて困った。
  • いろいろ試してみたので、まとめてみる。

結論は、¥ではなくて、\を使う

  • \がキーボードに書いていないので、出し方を調べた。
  • 出し方は、alt option + ¥ で、\の文字を出すことができた。

検証のプログラム

  • 下記のようなプログラムを書いて、どの文字だと検証した。
#include <stdio.h>

int main(void){
    printf("Hello World!! \n");
    printf("Hello World!! ¥n");
    printf("Hello World!! /n");
    return 0;
}

実行結果

ev@devPC vscode % gcc hello.c
dev@devPC vscode % ./a.out    
Hello World!! 
Hello World!! ¥nHello World!! /n%                                                                                     
dev@devPC vscode % 
  • 1行目のHello World!!は改行されている。
  • ¥(円記号)や/(スラッシュ)もついでに入れてみた。これらは改行されなかった。まあ、当然である。

よって、Mac環境でC言語を使うときには、alt option + ¥ コマンドで、 \ を使って改行するらしい。

これらの内容の詳細はコメントをいただきました。ありがとうございます。コメントをご覧ください。

2
0
3

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