Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#FFCCCC
...
FILE *fp = fopen("foo.txt","r");
if( !fp ) { /* file does not exist */
  FILE *new_fp = fopen("foo.txt","w");
  ...
} else {
   /* file exists */
  fclose(fp);
}
...

...