+ 1
How does comparing something with unsigned char work in C?
Started to study the basics of C, can't figure out why ... char a=-5; unsigned char b=5; printf("a>b : %d, a>b); .... is 0 (false), but when trying the same with int and unsigned int is 1.
0 Answers