Changes

Jump to: navigation, search

Team E - OOP344 20133

16 bytes added, 01:02, 21 October 2013
Coding Style and Standards
CDialog D;
</syntaxhighlight>
* Member Parameter variables indicated by without underline prefix:
<syntaxhighlight lang="cpp">
void method(int _param1param1, double _param2param2, char* _param3param3);
</syntaxhighlight>
* Declare variable before using inside of loop instead of creating it inside of loop (special requirement)
<syntaxhighlight lang="cpp">
int i;
for (i=0;i<=5;i++) {
printf("what?");
}
Instead of
<syntaxhighlight lang="cpp">
for (int i=0;i<=5;i++) {
printf("what?");
}

Navigation menu