Examveda

What will be the output of the following C code?
#include <stdio.h>
int main()
{
    char c = '�';
    putchar(c);
}

A. Compile time error

B. Nothing

C. 0

D. Undefined behaviour

Answer: Option B


This Question Belongs to C Program >> File Input Output

Join The Discussion

Related Questions on File Input Output