1
edit
Changes
→Class Standards
#endif
</syntaxhighlight>
'''All Cpp File Standards:'''
<syntaxhighlight lang="cpp">
/* Function Starts here */
function name() {
/* Header goes here */
int key = 0; // Comment goes here
bool done = false;
/* Again Important Header goes here */
if(condition)
{
stuffs;
}
/* All Loops */
for(i=0; i<len; i++)
{
statements;
}
while(condition)
{
statements;
}
}
/* function ends here */
</syntaxhighlight>