You are on page 1of 4

How to hello world in C++?

Simply include
#include <stdlib>
#include <iostream>

And add
int main(){
cout << Hello world;
}

You're done

You might also like