Mega Code Archive
Categories
/
C
/
Stdio H
Open a file called TEST for binary readwrite operations
#include
#include
int main(int argc, char *argv[]) { FILE *fp; if((fp=fopen("test", "rb+"))==NULL) { printf("Cannot open file.\n"); exit(1); } fclose(fp); }