Recently learning COCOS2DX, just started to write a tower defense game, because the first time with VS2012, feel not too accustomed. Most of C's content has also been forgotten, so do a brief review. 1. Keyword: auto break case Char const continue default does double else enum extern float for goto if int long register return sh ORT signed sizeof static struct switch typedef unsigned union void volatile while one. Data type keywords: basic data type: (5) void, char, int, float, double no return, character, shape, float (single), float (double) type modifier keyword: (4) Short, long, signed, unsigned , symbols, unsigned complex type keywords: (5) Struct,union, enum, typedef, sizeof struct, common body, enumeration, declaration, get type size storage level keywords: (6) Auto, static, register, extern, const, volatile automatic variable, static, register, external variable, invariant, variable (CV attribute) const static two. Process Control keyword JUMP structure: (4) Return, continue, break, Goto return, end the current loop, start the next time, jump, jump. Branching structure: (5) If, else, switch, case, default (other selection of switch) loop structure: (3) For,do, while
C Language Review (a) keywords