1
edit
Changes
→Coding Style and Standards
int b;
CDialog D;
Tab Spaces: 5;
Class Names: Start with upper case letter.
Variable names: Start with lower case letter. eg: int test;
Multiple word Variable names: Start with lower case and then following words start with upper case. eg: char empName;
Function/Method names: Start with lower case letter. eg: display();
Multiple word Function/Method names: Start with lower case and then following words start with upper case. eg: char getData();
Verticle spacing: Single spaces between assignments (= +=...) double otherwise
Comments: Comments go at end of line. End of functions and controll structures must be commented
</syntaxhighlight></big>