MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void function(int m, int n) { printf("%d %d n", m, n); } void main() { int s = 16, t = 15; function(s); } |
| A. | Garbage value |
| B. | Runtime Error |
| C. | 16 15 |
| D. | 15 16 |
| E. | Compilation Error |
| Answer» F. | |