unsigned int i;
scanf("%u",&i);
unsigned int i;
scanf("%u",&i);
With the size of unsigned integers being 4 bytes, What happens when a negative number is entered?
Reveal answer
Fill a bubble to check yourself
unsigned int i;
scanf("%u",&i);
With the size of unsigned integers being 4 bytes, What happens when a negative number is entered?