Difference between unsigned and unsigned int in C

unsigned is a modifier which can apply to any integral type (char, short, int, long, etc.) but on its own it is identical to unsigned int.

Leave a Comment