Blog Desk       February 10, 2020      789

What is the correct way to open the file “time.txt” as readable?

  1. fopen("time.txt","r+");
  2. open("time.txt");
  3. fopen("time.txt","r");
  4. open("time.txt","read");

The Right Answer is : Option C

Explanation