I have the task to write a function that reads a line from a text file (renamed to .dat
, however it contains only text), but I am out of options for a solution because of the following points:
I am using
Borland C++ Version 5.02
, and no, I CAN´T download another compiler because I dont have admin rights on my laptop and the guy who has the needed password isnt there until next week.The compiler does not accept
using namespace std
, and also it doesnt acceptgetline()
, no matter ifstring
andiostream
are included or not.
I am trying to find a solution or at least the tiniest approach, but I am unable to find one.
So my question is: How do I read a line from a simple textfile without using getline()
(cin.getline
works, the ones from string
or fstream
doesnt) ? The textfile contains several lines like these:
1234;12.05.03;08:44:23; XY12-AB;A1-12;Timeout
2345;12.05.03;09:04:34;XY1-CD;A22-9;Connection refused
And the numbers/letters between the ;
need to be stored in variables so they can be worked with.
Im not asking for you to write my code, but I am reallyreaylly frustrated and my instructor is no help.
Live long and prosper, Me.