Advertisement
shawonrog

05(extra white space)

Oct 1st, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include<stdio.h>
  2. int main(){
  3. FILE *fp1, *fp2;
  4. fp1=fopen("sibnz.txt","r");
  5. fp2=fopen("abc.txt","w");
  6. char a;
  7. while((a=fgetc(fp1))!=EOF){
  8. printf("%c",a);
  9. fputc(a,fp2);
  10. }
  11.  
  12. fclose(fp1);
  13. fclose(fp2);
  14.  
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement