How to read a file line by line without the getline function?Are all of your values in the getline function? whenever I had it as: [code]inputFile >> zipcode; ...
How to read a file line by line without the getline function?I did this [code]if (inputFile) { while (true) { // read the file line by line and store it ...
How to read a file line by line without the getline function?Yea, talked with the professor, and getline is OK to use. So, I tried the break thing as well, but ...
How to read a file line by line without the getline function?Any idea on how to calculate the total cost of all the postage in the text file as well? I believe ...
How to read a file line by line without the getline function?[code]#include <iostream> #include <fstream> #include <string> using namespace std; int main() { ...