Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("thefile.xxx",ios::binary);
char ch;
if (f.get(ch))
{
...
}
#include <cstdio>
FILE* f;
char ch;
f = fopen("thefile.xxx","rb);
if (f && (ch=fgetc(f)) != EOF)
{
...
}