Activity for Vinay Singh

  • Vinay Singh Vinay Singh posted a comment on discussion dev-cpp-users

    ifstream infile; string filename; cout << "Enter File name (no spaces): "; cin >> filename; infile.open(filename.c_str()); int count = 0; while (!infile.eof()) { infile >> inputA[count]; count++; } infile.close(); Check this code, If this is working for you or not?

1