0
1

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.

変数についての備忘録

Last updated at Posted at 2020-02-19

変数

変数とは

  • 変数とは値の出し入れができるもの

  • 値とは、数値や文字列のことです

  • 変数は自由に名前をつけたりすることができます。

  • 変数の命名には規則があります。
     

    • 予約語を使わない

      予約語とは、プログラム言語において、
      その言葉はそれは役割決まってる言語です。

      auto, break, case, char, const, continue, default, do, dougle, else, enum, extern, float, for, goto, if, int, long, register, return, short, signed, sizeod, static, struct, switch, typedef, union, unsigned, void, volatile, while
      
    • 数字を先に書いてはいけない

    などいろいろあります。今回はここまで

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?