

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