Why isn't the ++y part executing?
So here is the question I am given , I need to tell the output : #include <iostream> using namespace std; int main() { int x = 10; int y = 20; if(x++ > 10 && ++y > 20 ){ cout << "Inside if "; } else{ cout << "Inside else "; } cout <<… Read More Why isn't the ++y part executing?