

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int a = 4, b = 3; int c = a && b = 4; printf("%d n", c); } |
A. | 3 |
B. | 4 |
C. | Runtime Error |
D. | Compilation Error |
E. | None of these |
Answer» E. None of these | |