emscripten/tests/hello_world_file.cpp

14 строки
220 B
C++

#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;
}