Advertisement
Guest User

Untitled

a guest
Mar 28th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void){
  4.     FILE *file;
  5.     char c;
  6.     file = fopen("Bit.txt", "r");
  7.     while((c = fgetc(file))!=EOF){
  8.         printf("%c", c);
  9.     }
  10.     fclose(file);
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement