1.

What will be the output of the following C code snippet?
#include <stdio.h>
void main()
{
unsigned int m = -10;
printf("%d", m);
}

A. -10
B. Compilation Error
C. Runtime Error
D. Garbage value
E. None of these
Answer» B. Compilation Error


Discussion

No Comment Found

Related MCQs