Can't find Exe?

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>
using namespace 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
you forgot semicolon after the return 0 im newbie my self and like twiggy sad the debuger output say " expected a ";"
Topic archived. No new replies allowed.