fork download
  1. #include <stdio.h>
  2. void main()
  3. {
  4. FILE *fp;
  5. char str[20];
  6. fp=fopen("abc.txt","w");
  7. fputs("i am a boy\r\n",fp);
  8. fclose(fp);
  9. fp=fopen("abc.txt","r");
  10. fgets(str,10,fp);
  11. printf("%s",str);
  12. }
  13.  
Runtime error #stdin #stdout 0s 2296KB
stdin
Standard input is empty
stdout
Standard output is empty