Skip to content

Instantly share code, notes, and snippets.

View Jezzzae's full-sized avatar
🎯
Focusing

Jezzzae

🎯
Focusing
View GitHub Profile
@stevedoyle
stevedoyle / gist:1319089
Last active December 28, 2023 22:08
Reading a text file in C++
// Taken from http://www.cplusplus.com/doc/tutorial/files/
// reading a text file
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main () {
string line;