User Tools

Site Tools


cpp_hello_world

This is an old revision of the document!


Hello World in C++

| hello.cpp
#include <iostream>
 
using namespace std;
 
int main() {
  cout << "Hello World!" << endl;
 
  return 0;
}
cpp_hello_world.1533779705.txt.gz ยท Last modified: 2018/08/08 20:55 by jguerin