Suppose I wrote a letter in a notebook and I saved it as letter.txt . Then I realized that I forgot to say one thing in this letter. So I opened letter.txt with any text editor such as Notepad, Wordpad, or something like that. Now I have inserted the letters that I want to say in this letter in the middle of the file. How it works?
Example: Here is the message:
"Hi, How are you. Today I want to meet with you. Thank you.
It is actually stored in memory as follows:
"Hi, \ NHow \ 0are \ 0you. \ 0TodayToday \ 0i \ 0want \ 0to \ Nmeet \ 0you. \ NThank \ 0you.
Now I want to add I am fine after How are you . How it works? How is it added in the middle of the file? how other words are not overwritten? What is the process of doing this?
source share