if(condition) statement;
if(condition)
{
statements;
}
if(condition)
{
statements1;
}
else
{
statements2;
}
if(condition1)
{
statements1;
}
else if(condition2)
{
statements2;
}
else
{
statements3;
}
In the following a is assigned the value of b if
b is less than c otherwise it is assigned the value
of c,
a = (b < c) ? b : c;