Open main menu

CDOT Wiki β

Changes

Team S - OOP344 20133

89 bytes added, 21:43, 17 October 2013
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