What is command Line Arguments 05:45:00 We know that we can pass arguments to a function. Every C program atleast one function main ( ). The programs that we have discussed...Read More
What is Random Access to Files 05:42:00 So far we have discussed file functions that are useful for reading and writing data sequentially. There are occasions, however, w...Read More
Error Handling during File Operations 05:31:00 It is possible that an error may occur during I/O operations on a file. Typical error situations include: 1. Trying to read ...Read More
The fprintf and fscanf Functions 05:26:00 The functions fprintf and fscanf perform I/O operations that are identical to the familiar printf and scanf functions, except of cours...Read More
How to Perform Input/output Operations on Files 05:20:00 Once a file is opened, reading out or writing to it accomplished using the standard routines listed in previous topic. The getc ...Read More
How to Close a File in C 05:14:00 A file must be close as soon as all operations on it have been completed. This ensures that all outstanding information associated wit...Read More
How to Open a File in C 05:07:00 if we want to store data in the secondary memory, we must specify certain things about the file, to the operating system. They incl...Read More
What is data files in C 04:53:00 Until now we have been using the functions such as scanf and printf to read and write data. These are console oriented I/O functions, ...Read More