What will be the output of the following C code?
#include <stdio.h>
int main()
{
char c = '�';
putchar(c);
}
#include <stdio.h>
int main()
{
char c = '�';
putchar(c);
}A. Compile time error
B. Nothing
C. 0
D. Undefined behaviour
Answer: Option B

Join The Discussion