1
edit
Changes
→Class Standards
/* Again Important Header goes here */
if(condition) {
stuffs;
}
/* All Loops */
for(i=0; i<len; i++) {
statements;
}
while(condition) {
statements;
}