C fgets() Function Usage Examples To Read File – POFTUT

C fgets() Function Usage Examples To Read File


Standard C library provides the fgets() function to read a line from a specified stream where the stream can be a file. fgets() function also used to read the specified number or size of the characters from the given string. In this tutorial, we will learn the usage of fgets()  function with its parameters with different examples.

fgets() Function Syntax

The syntax of the fgets()  function is very easy. there are only 3 parameters where we will get a char array as a return value.

char *fgets(char *str, int n, FILE *stream)

Here is the parameters meaning and usage information.

  • char *str is a string value where copied or got string will be stored.
  • int n is the size or count of the read characters.
  • FILE *stream is the stream we want to read which is generally a file.

Return Value of fgets() Function

If the function execution is completed successfully there is a return value which is a char. If the end of stream or file is reached and no characters have been read the contents of str remain unchanged and a null pointer is returned.

Read The Whole Line From A File

Now its time for example. We will create a sample code which will read the file file.txt .  The string read will be put to the string.

  • char str[] is the char array we will store the string we read.
  • FILE *f is the file pointer we will use to read the string.
#include <stdio.h>

int main () {
   //File pointer to store opened file information and cursor
   FILE *f;

   //str char array to stored read values or characters
   char str[160];

   /* opening file for reading */
   f = fopen("file.txt" , "r");
   if(f == NULL) {
      perror("Error opening file");
      return(-1);
   }
   if( fgets (str, 160, f)!=NULL ) {
      /* writing content to stdout */
      puts(str);
   }
   fclose(f);
   
   return(0);
}
Read From File Whole Line
Read From File Whole Line

We will store the code above with the file name fgets.c and we will compile with the following command.

$ gcc fgets.c -o fgets

AND  run the created fgets executable like below.

$ ./fgets
Read From File Whole Line
Read From File Whole Line

Read Line For Specified Number Of Bytes or Size From A File

In this example, we will specify the string size we want to read. The size value will be provided as the second parameter of the fgets()  function. In this example, we will read 300 characters from the given file to the str char array.

#include <stdio.h>

int main () {
   //File pointer to store opened file information and cursor
   FILE *f;

   //str char array to stored read values or characters
   char str[300];

   /* opening file for reading */
   f = fopen("file.txt" , "r");
   if(f == NULL) {
      perror("Error opening file");
      return(-1);
   }
   if( fgets (str, 300, f)!=NULL ) {
      /* writing content to stdout */
      puts(str);
   }
   fclose(f);

   return(0);
}

LEARN MORE  What Is EOF (End Of File)? Examples with PHP, C++, C, Python, Java

Leave a Comment