

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int t1 = 8, t2 = 9, t3; if (t3 = t1 = 4 || t2 > 10) printf("%d", t3); else printf("No Output n"); } |
A. | 1 |
B. | 9 |
C. | 8 |
D. | 10 |
E. | No output |
Answer» B. 9 | |