Home » C Programming » Input & Output » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    char ch = '�';
    putchar(ch);
    }
    1. Nothing
    2. Undefined behaviour
    3. 0
    4. Compilation Error
    5. None of these
Correct Option: A

Nothing



Your comments will be displayed only after manual approval.