4 Class names should be UpperCase
19 Class function names should be UpperCase, except
20 when using any of the following prefixes, in which
21 case they whould be in cammelCase:
51 Code should be idented with tabs.
64 for (i = 0; i < 100; i++){
73 for (i = 0; i < 100; i++){
80 For construct should have an space after "for", there should not
81 be spaces between the parenthesis.
89 for (i = 0; i < 100; i++){
94 for( i = 0 ; i < 100 ; i++ ){
103 They should be on the same line of the loop construct.
107 Probably wastes a line.
113 for (i = 0; i < 100; i++){
117 for (i = 0; i < 100; i++)
125 They should be in the same line of the function.
129 Having the brancket in the next line wastes a line, probably
130 doesn't adds to much to readability.
136 int main(int argc, char **argv){
140 int main(int argc, char **argv)