

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