Answers for "how to input a file path in c++"

C++
0

how to input a file path in c++

int main()
{
    std::cout << "Please enter the file name: ";
    std::string name;
    std::getline (std::cin, name);
    ifstream ifs(name.c_str());
    if (!ifs) error("can't open input file ", name);

    vector < Point > points;
    Point p;
    while (ifs >> p) points.push_back(p);
    // ....
}
Posted by: Guest on June-12-2021

Browse Popular Code Answers by Language