arrow 若葉プログラミング塾 > 知識の玉手箱 > ワンポイントTips >
Cの予約語

 C言語の予約語は以下に示すとおりである。これらは、構文解釈に使用されるので、識別子(変数名、関数名等)として使用することができない。

  • auto
  • break
  • case
  • char
  • const
  • continue
  • default
  • do
  • double
  • else
  • enum
  • extern
  • float
  • for
  • goto
  • if
  • int
  • long
  • register
  • return
  • signed
  • sizeof
  • short
  • static
  • struct
  • switch
  • typedef
  • union
  • unsigned
  • void
  • volatile
  • while
Cの予約語
arrow 若葉プログラミング塾 > 知識の玉手箱 > ワンポイントTips >
KC