Home » C Programming » File I/O » Question
  1. Which of the following fopen() statements are illegal?
    1. fp = fopen(“/home/user1/test.txt”, “w”);
    2. fp = fopen(“test”, “w”);
    3. fp = fopen(“test.txt”, “r”);
    4. All of above
    5. None of these
Correct Option: E

None of these



Your comments will be displayed only after manual approval.