Computer Science, asked by UtkarshSisal, 4 days ago

2) Enlist data types in C++ with their size in bytes.​

Answers

Answered by pihuadhikary97
0

Answer:

Integers typically requires 4 bytes of memory space and ranges from -2147483648 to 2147483647. Character: Character data type is used for storing characters. Keyword used for character data type is char.

...

Long.

Data Type Size (in bytes) Range

short int 2 -32,768 to 32,767

unsigned char 1 0 to 255

float 4

double 8

Answered by pnandinihanwada
0

Answer:

Data Type Size (in bytes) Range

short int 2 -32,768 to 32,767

int 4 -2,147,483,648 to 2,147,483,647

long int 4 -2,147,483,648 to 2,147,483,647

unsigned long int 8 0 to 4,2

Similar questions