Advertisement
Md_hosen_zisad

FILE SAVE

Nov 5th, 2017
373
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. int main()
  4. {
  5.     FILE*fp;
  6.     int i;
  7.     char c;
  8.  
  9.     fp=fopen("D:\\Filepblm1.txt","w");
  10.  
  11.   while(i--)
  12.  
  13.   {if(c=='?')
  14.   {
  15. break;}
  16.  
  17. c=getchar();
  18. fputc(c,fp);
  19.  
  20.   }
  21.   fclose(fp);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement