From Game Editor
In C there are many keywords:
- char (data type)
- int (data type)
- double (data type)
- float (data type)
- long (data type)
- short (data type)
- void (data type)
- signed
- unsigned
- const
- static
- extern
- struct
- sizeof
- enum
- if (condition)
- else
- do (condition, loop)
- while (condition, loop)
- for (condition, loop)
- continue (continue loop)
- break (exit loop)
- goto (jump to code)
- switch
- case (switch)
- default (switch)
- return
- true
- false