1
edit
Changes
→Variable Naming
* comment complex code
=== Variable Naming ===
* camel case with first letter lowercase in both variables and methods: int numCounter;
* asterisk of a pointer will be attached to the type, not the variable name: int* pointer;
* extern prefix: extern int _externInt;
* static prefix: static int s_staticInt;
=== Code Blocks ===
* all braces have their own line