What will be the output of the following C code snippet?
#include <stdio.h>
void main()
{
unsigned int x = -5;
printf("%d", x);
}
#include <stdio.h>
void main()
{
unsigned int x = -5;
printf("%d", x);
}A. Run time error
B. Aries
C. -5
D. 5
Answer: Option C

Join The Discussion