#include <iostream>
using namespace std;
int main() {
bool x = true;
bool y = false;
if(x) {
cout << "if works";
}
if(y==false) {
cout << "else works";
}
int z;
cin >> z;
}
This is a small code that I compiled using Microsoft Visual C++ 2010 Express Edition. When I compile I get a message saying that Your project is out of date. Why do I get this message ?
If the above code is really out of date, I will be thankful to any suggestion?