i created the hello world test application, it makes this code

Code:
// test4.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

int main(int argc, char* argv[])
{
	printf("Hello World!\n");
	return 0;
}

but how do i actually run it and see the output hello world?