Open a file called TEST for binary read/write operations : fopen « stdio.h « C / ANSI-C






Open a file called TEST for binary read/write 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);
  }
   

           
       








Related examples in the same category

1.fopen: opens a file by *fname