Today I accidentally found that "and" statement works the same way as &&
if( (2>1) && (3>1))
{
cout<<"Here"<<endl;
}
works the same as
if( (2>1) and (3>1))
{
cout<<"Here"<<endl;
}
So i just want to verify if this "and" statement is compatible with all versions of C++ and platforms and any more additional useful info is also helpful.