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