C Program to Write a Sentence to a File

Taylor Emma
1 Min Read
Disclosure: This website may contain affiliate links, which means I may earn a commission if you click on the link and make a purchase. I only recommend products or services that I personally use and believe will add value to my readers. Your support is appreciated!

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.

Share This Article
A senior editor for The Mars that left the company to join the team of SenseCentral as a news editor and content creator. An artist by nature who enjoys video games, guitars, action figures, cooking, painting, drawing and good music.
Leave a review