fork download
  1. #include <stdio.h>
  2. int main(void) {
  3. FILE *f;
  4. f = fopen("file","wb");
  5. printf("%d",f != NULL);
  6. fclose(f);
  7. return 0;
  8. }
Runtime error #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
Standard output is empty