Ok, so I have this simple code, but when I try to build/run it's telling me it can't find the .exe file in my debug folder for my program. I checked the file and its not there. I've been searching for a solution to this, but couldn't find a clear answer so I decided to post here.
I'm using Visual Studios Express 2012.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include<iostream>
#include<conio.h>
usingnamespace std;
int main()
{
int x = 10;
if(x==10) {
cout << " STRINGS EVERYWHERE \n ";
}
_getche();
return 0
}
did you read your debug output? because I ran it and the answer was clear. I'm not trying to be mean, I'm just trying to help without giving a straight answer. It's honestly a simple (and in my case common) mistake which the debug output reports instantly