Guest User

Untitled

a guest
Jul 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2. int main (int argc, const char * argv[])
  3.  
  4. {
  5. FILE *fp;
  6. fp=fopen("/Users/--------/Desktop/C.txt", "w");
  7. putc("C", "/Users/-------/Desktop/C.txt");
  8. fclose(fp);
  9. }
  10.  
  11. putc('C', fp);
  12.  
  13. int putc(int c, FILE *stream);
  14.  
  15. putc('C', fp);
  16.  
  17. putc('C', fp);
Add Comment
Please, Sign In to add comment