Q. What will be the output of the following C code snippet?
Code:
#include <stdio.h>
void main()
{
1 < 2 ? return 1: return 2;
}
β
Correct Answer: (D)
Compile time error