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!
Let's get started with code.
#include <iostream>
int main() {
std::cout<<"Hello world";
}
That was it really!
Please, don't forget to subscribe.