Discussion :: Control Instructions
-
Point out the error, if any in the program.
#include
Answer : Option C
Explanation :
Variable b is not assigned.
It should be like:
b = a >= 5 ? 100 : 200;
Be The First To Comment