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