

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