

MCQOPTIONS
Saved Bookmarks
1. |
What will be the final value of n4 in the following C code?#include <stdio.h> int main() { int n1 = 8, n2 = 4, n3 = 4; int n4; n4 = n2 + n3 == n1; printf("%d", n4); } |
A. | 8 |
B. | 4 |
C. | 1 |
D. | 0 |
E. | None of these |
Answer» D. 0 | |