

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int p = 3, q = 4; p += q -= p; printf("%d %d", p, q); } |
A. | 3 |
B. | 4 |
C. | 3 4 |
D. | 4 1 |
E. | None of these |
Answer» E. None of these | |