Links: PROGRAMMING -
Rel:
Ref:
Tags: #public


C++ Hello World:

#include <iostream>

// using namespace std;

int main() {
    std::cout << "Hello World";
    return 0;
}


// g++ helloworld.cpp
// ./a.out