1.

Which of the following is the correct output for the program given below?
#include <studio.h>
int main ()
{
int a = 40, b = 50, c = 10, x;
x = a < b < c;
printf("%d n", x);
return 0;
}

A. 0
B. 1
C. Error
D. None of the above
Answer» C. Error


Discussion

No Comment Found