What is the role of "r+" on the file "NOTES.TXT" in the given below code?
#include<stdio.h>
int main ()
{
FILE *fp;
fp = fopen("NOTES.TXT", "r+");
return 0;
}
Download the Study24x7 App, so you can connect and collaborate.