aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_world_file.cpp
blob: 71fb953bb0d66538e3e786fa9f956f102047f056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
int main() {
  FILE *file = fopen("tests/hello_world_file.txt", "rb");
  while (!feof(file)) {
    char c = fgetc(file);
    if (c != EOF) {
      putchar(c);
    }
  }
  fclose (file);
  return 0;
}