I have these three codes:
Code:
fstream file1;
file1.open("text", iostream:in);
Code:
fstream file2;
file2.open("text", ios:in);
Code:
fstream file3;
file3.open("text", ios_base:in);
I have seen all three. What's the difference between these three?
Thanks.