Output of C programs | Set 43
1. What is the output of following program? #include <stdio.h> int main() { int a = 1, b = 2, c = 3; c = a == b; printf("%d", c); return 0; } Choose the correct answer: (A) 0 (B) 1 (C) 2 (D) 3 Answer : (A) Explanation : "==" is relational operator which returns only two values, eithe