

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { char ch = ' '; putchar(ch); } |
A. | Nothing |
B. | Undefined behaviour |
C. | 0 |
D. | Compilation Error |
E. | None of these |
Answer» B. Undefined behaviour | |