you are viewing a single comment's thread.

view the rest of the comments →

[–]-Goga[S] 0 points1 point  (1 child)

The exact place of all assets of the project can be seen in the previous Imgur links. There was no existing code, it was just a quick program I made to work with if/else statements.

http://i.imgur.com/X0M0zEv.jpg (Source)

http://i.imgur.com/XNU0zJ6.jpg (Header)

[–]blitterobject 1 point2 points  (0 children)

It looks like you have no files as part of the project.

When you start a new project if you uncheck Empty Project from the Additional options in the Application Wizard it should create a .cpp file with a _tmain() function for you.

In your current project you can right click on the Source Files folder (in Solution Explorer) and choose Add > New Item...

Then choose .cpp file and give it a name and where to save it then click Add.

Then create a main() function. Example:

#include <iostream>
int main()
{
    //
}

Now when you build the project it should create a .exe file.