What will be the output of the program?
#include
int main()
{
int a = 500, b = 100, c;
if(!a >= 400)
b = 300;
c = 200;
printf("b = ? = %d\n", b, c);
return 0;
}
Answer: D
No answer description available for this question.