I just wanted to make sure i am interperating code correctly when i write or read it when it comes to fstream.
when you say
ofstream example;
your basically making a keyword "example" to call different functions.
aka example.open()
or .close.
but, if i used example as the out put operator, i need a different name for ifstream.
So i could type
ifstream exampletwo;
And then use that "Keyword" to read from files that i write using the example keyword?
Does any of this make sense lol? Thanks