Changes

Jump to: navigation, search

Team E - OOP344 20133

313 bytes added, 18:54, 20 October 2013
Coding Style and Standards
<syntaxhighlight lang="cpp">
void method(int _param1, double _param2, char* _param3);
</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?");
}
</syntaxhighlight>
Instead of
<syntaxhighlight lang="cpp">
for (int i=0;i<=5;i++) {
printf("what?");
}
</syntaxhighlight>

Navigation menu