1
edit
Changes
→Coding Style and Standards
== Coding Style and Standards ==
* Tab's are allowed in the code( Please set your tab size to 3 and also your indent size to 3 )
* Each object and variable must have its own type to make it as clear as possible
CDialog D;
</syntaxhighlight>
* Pointer *
<syntaxhighlight lang="cpp">
Is Accepted int* number;
Not Accepted int *number;
</syntaxhighlight>
* Formatting of condition blocks
<syntaxhighlight lang="cpp">