C++ Programming

Hello World

Learn C plus plus programing by example of hello world

10/25/2019
0 views
cpp-hello-world.cppCPP
/* include header file */
#include <iostream>

/* tells the compiler to use the std namespace */
using namespace std;

int main() {

	/* print text on screen */
	cout << "Hello World!\n";
	return 0;
}
cppc plus plushello worldcodingtutorial

Related Examples