Answer:
C) Equal to
Explanation:
In C++, both
int
and
unsigned int
data types typically occupy the same amount of memory. The difference between the two is in the range of values they can represent:
int
can represent both positive and negative values, whereas
unsigned int
can only represent non-negative values (including zero), allowing it to represent a larger range of positive values than the same size
int
.