C Program to Write a Sentence to a File

In this example, you will learn to write a sentence in a file using fprintf() statement.

To understand this example, you should have the knowledge of the following C programming topics:

·         C File Handling

·         C Standard Library Functions

This program stores a sentence entered by the user in a file.

1.       

Output

Enter a sentence: C Programming is fun

Here, a file named program.txt is created. The file will contain C programming is fun text.

In the program, the sentence entered by the user is stored in the sentence variable.

Then, a file named program.txt is opened in writing mode. If the file does not exist, it will be created.

Finally, the string entered by the user will be written to this file using the fprintf() function and the file is closed.

Related Posts

© 2024 Software Engineering - Theme by WPEnjoy · Powered by WordPress