Which factors decide size of a data type for a machine ?
Answers
Answered by
0
It depends on both processors and compilers including programming model. For example, in 16-bit machines, sizeof (int) was 2 bytes. 32-bit machines have 4 bytes for int. It has been considered int was the native size of a processor, i.e., the size of register.
Similar questions