Mega Code Archive

 
Categories / C / Code Snippets
 

Open a file called TEST for binary read write operations

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