HI All,
the syntax of "if loop in C" is
if (Condition)
{
statements;
}
but this if loop terminated by a NULL statement( ; ) also works..
if (Condition)
{
statements;
};
CAn anybody explains me the exact reason for how this works?