the storage is different for different operating system what does this mean
Storage and data
Hello @mansikanoi17,
For 32-bit operating System:
int : 2 bytes
char : 1 byte
long : 4 bytes
long long : 8 bytes
For 64-bit operating System:
int : 4 bytes
char : 2 byte
long : 8 bytes
long long : 8 bytes
This is what it means.
Hope, this would help.
Give a like if you are satisfied.