In ‘C programming’, when fopen () is not able to open a given file due to any reason, it retries

In ‘C programming’, when fopen () is not able to open a given file due to any reason, it retries Correct Answer NULL

fopen () function is used for opening a file.

Syntax:

  • FILE pointer_name = fopen ("file_name", "Mode");
  • pointer_name can be anything of choice
  • file_name is the name of the file, which you want to open.
  • If the file does not open successfully then the pointer will be assigned a NULL value.

Related Questions