I'm learning c++ and i just installed microsoft visual studios express 2013 for windows desktop as my compiler. After compiling my Hello World program, I can't find the command to run my compiled program. Where is the run button in microsoft visual studios express 2013 for windows desktop?? Please help! Here is my hello world program
#include "stdafx.h"
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!" << endl;
return 0;