C fprintf() and fscanf()Writing File : fprintf() functionThe fprintf() function is used to write set of characters into file. It sends formatted output to a stream. Syntax: Example: Reading File : fscanf() functionThe fscanf() function is used to read set of characters from file. It reads a word from the file and returns EOF at the end of file. Syntax: Example: Output: Hello file by fprintf... C File Example: Storing employee informationLet's see a file handling example to store employee information as entered by user from console. We are going to store id, name and salary of the employee. Output: Enter the id 1 Enter the name sonoo Enter the salary 120000 Now open file from current directory. For windows operating system, go to TC\bin directory, you will see emp.txt file. It will have following information. emp.txt Id= 1 Name= sonoo Salary= 120000 Next TopicC fputc() and fgetc() |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India