eyesrglazed
Programmer
I am trying to input from a file on the Internet, although I'm not sure if this is possible. Any ideas?
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>
#include <string>
using namespace std;
int main
{
ifstream inFile;
string webSite;
string str;
cin >> webSite;
inFile.open(webSite.c_str());
inFile >> str;
cout << str;
return 0;
}