Advertisement
d10070dd

maketext

Sep 14th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. /*make textfile example */
  2. #include <stdio.h>
  3.  
  4. int main ()
  5. {
  6.     FILE *fp;
  7.     fp=fopen("sample.txt","w");
  8.     fprintf(fp,"Test\n");
  9.     fclose (fp);
  10.  
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement