how many bytes for a real [20] statement
Answers
Answered by
0
★ 4 bytes ★
int is guaranteed to be able to hold -32767 to 32767, which requires 16 bits. In that case, int , is 2 bytes. However, implementations are free to go beyond that minimum, as you will see that many modern compilers make int 32-bit (which also means 4 bytes pretty ubiquitously)
Similar questions