Hello world in C++

This post explains how you write a 'Hello World' program in c++.

Before getting started, let's just appreciate how beautiful this picture is!

Photo by Denis Pavlovic / Unsplash

Let's get started with code.

#include <iostream>

int main() {
	std::cout<<"Hello world";
}
Hello world in C++.


That was it really!

Please, don't forget to subscribe.