Coding Style

The most important rules are as follows:

Important Rules

if () {
    int i;
    ...
}

or

for (i=0; ...) {
    int a;
    ...
}
int func(int x)
{
    /* body */
}