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

UTF handling in C

As You probably know I’m a Java developer, and a concept of String is my everyday meal. However, in C there is no such thing as string-type. Of course there is no problem with using string literals as a value assigned to the variable. However,…

Read more

Back to top