Integers need how many bits to stored in C plus plus?
It depends on the type of integer (such as long, short, int and
char) and the specific implementation of C++. The only guarantee is
that a char must occupy one byte (sizeof(char)==1). An int is
typically 32-bits (4 bytes), but only sizeof(int) can tell you for
sure.