Mega Code Archive

 
Categories / C / Stdio H
 

Open a file called TEST for binary readwrite operations

#include <stdio.h>   #include <stdlib.h>   int main(int argc, char *argv[])   {       FILE *fp;           if((fp=fopen("test", "rb+"))==NULL) {         printf("Cannot open file.\n");         exit(1);       }             fclose(fp);   }