Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/judevector/sentence

C program to write a sentence to a file
https://github.com/judevector/sentence

Last synced: 3 days ago
JSON representation

C program to write a sentence to a file

Awesome Lists containing this project

README

        

# Sentence
C program to write a sentence to a file

In this we are writing the a line entered by user into the mentioned file.

If file opened successfully, we are reading the user input using fgets() function and writing into the file using fprintf() function.

In the end we are closing the file using fclose() function.