What is Unsigned in C?

In the C language, unsigned is a data type specifier used to modify integer types, indicating that variables of that type can only store non-negative integers, i.e. unsigned integers. It can be applied to char, short, int, long, and their derived types. Using unsigned to modify integer types can expand the range of positive integers that can be represented, but cannot represent negative numbers.

bannerAds