User Tools

Site Tools


computer_science:programming:cpp:hello_world

Here is the most basic piece of C++ code:

#include <iostream>
 
using namespace std;
 
int main(){
    cout << "Hello World";
    return 0;
}
computer_science/programming/cpp/hello_world.txt · Last modified: 2021/09/15 09:06 by mana