What should the 64-bit type on a machine that can support it?
Answers
Answered by
1
The new C99 Standard specifies type long long as effectively being at least 64 bits, and this type has been implemented by a number of compilers for some time. (Others have implemented extensions such as __longlong.) On the other hand, it's also appropriate to implement type short int as 16, int as 32, and long int as 64 bits, and some compilers do.
See also questions 1.3 and 18.15d.
Additional links: Part of a proposal for long long for C9X by Alan Watson and Jutta Degener, succinctly outlining the arguments.
Answered by
0
On PC there are usually 2 types:
32 bit and 64 bit,
The 64 bit computer works faster than 32 bit pc
Hope this helps you....
32 bit and 64 bit,
The 64 bit computer works faster than 32 bit pc
Hope this helps you....
Similar questions