advent-of-code-cpp-2021/prototypeFile.cpp

18 lines
317 B
C++

#include <iostream>
#include <fstream>
#include <algorithm>
#include <vector>
#include <string>
#include <sstream>
using namespace std;
int main(void)
{
string rawInput;
ifstream readFile ("data/input.txt", ios::in);
while(getline(readFile, rawInput))
{
// File manip code goes here
}
}