MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> int main() { int n = 25, m = 13; printf("%d %d %d", n, m); } |
| A. | 25 13 Garbage value |
| B. | 25 13 |
| C. | Undefined behaviour |
| D. | 13 25 |
| E. | None of these |
| Answer» B. 25 13 | |