I'm fairly new to programming, so bare with me. I'm trying to figure out in my head what is actually stored when I save data using, for instance, notepad. Let's say I store the letter 'M'.
I know 'M' is represented as 77 in ascii and 1001101 in binary. Under the hood, is the binary number 1001101 stored on disk, and when I ask notepad to open the file, it converts it to ascii, back to a character? Hope this makes sense..
Thanks
