Hi all,
I require some help using ifstream. I want to open a file who's name is made up in part by a user enter string - this is the format of the filename ...
"Airports_" << airlineICAO << ".txt"
i did try the following ...
ifstream airportsSource ("Airports_" << airlineICAO << ".txt");
How do i achieve this? Any help most appreciated.