Loading search index…
No recent searches
No results for "Query here"
hello-world.cpp
#include <iostream> int main() { std::cout << "hello world" << std::endl; return 0; }
$ g++ hello-world.cpp -o hello-world $ ./hello-world hello world
First, compile the code into an executable:
$ g++ hello-world.cpp -o hello-world $ ls hello-world hello-world.cpp
$ ./hello-world hello world