#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream file0( "file0.txt" );
ifstream file1( "file1.txt" );
if (file0 != file1) {
cout << "What is being compared?" << endl;
}
}
If the above code, what is being compared in the conditional? I believe it is pointer values but I am unable to find supporting evidence.
Thanks!