C program for copy string from one file to another file
c code to copy note pad to another notepad
c program to read note pad
c program to write into notepad
Program:-
Note:-
fp=fopen("e:\\text.txt","a");
# a is used to write at end of file
# a+ is used for both write at end of file and read
# w is used write into file, it will erase old data, if file is not present it will create a file
# w+ is used for both writing and reading into file, it will erase old data, if file is not present it will create a file
# r is used to read file
# r is used for both write and read.if file is not present it will show error.
See Also
c program to create notepad
c program for reading notepad
c program to write data into notepad
c program for writing notepad at end of file
how to write a c program for to store the data in order wisely with checking condition
ReplyDeletecheck out this post to store data in notepad http://www.aboutcodes.com/2013/03/c-program-to-write-data-into-notepad.html
Deletehttp://www.aboutcodes.com/2013/03/c-program-for-writing-notepad-at-end-of.html