#include <fstream> std::ifstream ifs(path); // OR: ifs.open(path); int val; while (ifs >> val) { // ... }