(Choose 1 answer)
Consider the following code:
if (a == b)
printf (" The Numbers are equal");else if (a < b)
printf(" The Smaller Number is: %d", a);
else printf("(" The Smaller Number is: %d", b);In the above code, if a 14 and b=9, then the clause is executed.
A. if
B. else if
C. else
: 8