Advertisement
Guest User

Untitled

a guest
May 28th, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <windows.h>
  2. #include <stdio.h>
  3.  
  4. int main(void)
  5. {
  6.     FILE *fp = fopen("input.txt", "r");
  7.     char buf[64];
  8.     fgets(buf, 64, fp);
  9.     fclose(fp);
  10.     MessageBox(NULL, buf, NULL, MB_OK);
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement