

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int p1 = 3, p2 = 2; int p3 = p1 /= p2 %= 2; printf("%d n", p3); } |
A. | Compilation Error |
B. | 3 |
C. | 2 |
D. | 1 |
E. | Floating point exception |
Answer» F. | |