8- data type part 2 int & unsigned int & signed int & short int unsigned short int signed short int

Опубликовано: 23 Март 2026
на канале: noh jalal mohammed
359
9

#data #type part 2 #int & #unsigned int & #signed int & #short int & unsigned short int & signed short int & #long int & signed long int & unsigned long int & long long int & unsigned long long int
int 4bytes -2147483648 to 2147483647
unsigned int 4bytes 0 to 4294967295
signed int 4bytes -2147483648 to 2147483647
short int 2bytes -32768 to 32767
unsigned short int 2bytes 0 to 65,535
signed short int 2bytes -32768 to 32767
long int 8bytes -2,147,483,648 to 2,147,483,647
signed long int 8bytes same as long int
unsigned long int 8bytes 0 to 4,294,967,295
long long int 8bytes -(2^63) to (2^63)-1
unsigned long long int 8bytes 0 to 18,446,744,073,709,551,615