File Handling in c: Writing to a file
Posted by Unknown
0
comments
After having learned to read information from a file, now its
time to know how to write to a file.
Now to write to a file we have to obviously create a file
and then open it in write mode. This can be done by a single statement which is
given below
fs=fopen(“abc.txt”,”w”);
Now you may be thinking what the about statement must be doing.




