I've recently started learning C. I have read that integer range of gcc is -214783648 to +2147483647
.
Using GCC on CentOS.
I understood that it is 2^32 is splitted into two parts and 0.
Is this a imposed restriction on the Compiler ? Any Advantages with this ? or my compiler is 32 Bit ? (As far as I know my computer is 64-Bit).
If one one go above this limit, what should one do ?
Thanks in Advance