Hello world in c++ using iosteam.

1
2
3
4
5
#include <iostream>

void main() {
    std::cout << "Hello World!";
}