How does C handle floating-point numbers

We’ve already learned about storing single number in one byte (containing 8 bits) – that’s actually the same like storing ASCII-table characters in a single char variable. Depending on the unsigned/singed definition the range is -127 to 127 or 0 to 255 (with 0 as…

Read more

Bytes, mappings, encodings and all that jazz

In the modern web-based programming the problem of encoding and usage of different languages seems like a thing of the past. I still remember how I’ve struggled at the very beginning of my programming career to get polish letters to be properly displayed in HTML.…

Read more

Back to top