Changes

Jump to: navigation, search

Team A - OOP344 20133

305 bytes added, 16:27, 16 October 2013
Coding Style and Standards
int b;
CDialog D;
</syntaxhighlight></big>
* Every statement should be within its own curly brackets (Even it's a one line statement)
<big><syntaxhighlight lang="cpp">
for((initilization; condition; increment){
code block statement(s);
}
 
if(condition){
code block statement(s);
 
}
else{
code block statement(s);
 
}
 
</syntaxhighlight></big>

Navigation menu