Y
Hacker News
new
|
ask
|
show
|
jobs
by
edwintorok
4778 days ago
No, int is the same size on 32-bit and 64-bit Linux: sizeof(int) == 4 sizeof(long) == 4 (32-bit), 8 (64-bit) sizeof(long long) == 8
1 comments
ddalex_ro
4778 days ago
I learn something every day, thank you !
link