ifstream doesn't read from the fileTry this [code]while(in >> one >> two >> three) { byte = one + two + three; out << (char) byte; }...
Array Style RefinementYou have many unnecessary comments. Don't use a "raw" array. Use std::vector instead. Don't use NULL...
Problem with reading .txt fileThe problem is here [code] flightTime = computeFlightTime(distance, speed); //remove f...
Problem with reading .txt fileCould you post the updated code?
Problem with reading .txt file 1. main should only be one of the following two, [code] int main() {} int main(int, char**) {} [/...