Hello World C++ Example Program


Levels of difficulty: / perform operation:

C++ Program

#include<iostream>
#include<conio.h>
//Standard namespace declaration
using namespace std;
//Main Function
int main() {
	//Standard Ouput Statement
	cout<<"My First C++ Program";
	// Wait For Output Screen
	getch();
	//Main Function return Statement
	return 0;
}

Output

My First C++ Program

Other Related Programs in cpp

  1. Hello World C++ Example Program