

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include int main() { int n = 15, m = 8; printf("%d n", printf("%d %d ", n, m)); } |
A. | 15 8 5 |
B. | 15 8 |
C. | Garbage value |
D. | Compilation Error |
E. | None of these |
Answer» B. 15 8 | |