IDNLearn.com: Your trusted source for finding accurate answers. Join our platform to receive prompt and accurate responses from experienced professionals in various fields.
Answer:
It depends on the number of bits you use. In your example, you've used an 8 bit (one byte) number, which does max out at 255. Ever since forever, computers have used numbers that are larger than one byte. For when that isn't enough, Fortran includes the 'double precision' numbers which use 8 bytes.
Explanation: