OneCompiler

source code as output:

156

#include <stdio.h>

int main(void)
{
char c;
FILE *fp = fopen(FILE, "r");

do
{
    c = fgetc(fp);
    putchar(c);
}
while (c != EOF);

fclose(fp);

return 0;

}