User profile: arv7

User info
User name:arv7
History
Joined:
Number of posts:5
Latest posts:

ifstream doesn't read from the file
Try this [code]while(in >> one >> two >> three) { byte = one + two + three; out << (char) byte; }...

Array Style Refinement
You have many unnecessary comments. Don't use a "raw" array. Use std::vector instead. Don't use NULL...

Problem with reading .txt file
The problem is here [code] flightTime = computeFlightTime(distance, speed); //remove f...

Problem with reading .txt file
Could 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**) {} [/...