// This rule specifies whether you have to have a
// space ' ' after a statement keyword.
// Statements are if, while, for, ...
// Some companies like to have a space after the
// keyword to enhance readability.

// without space
if(a < MAX)
{
    for(int i = 0; i < MIN; i++)
    {
...


// with space after statement
if (a < MAX)
{
    for (int i = 0; i < MIN; i++)
    {
...