Program Execution Model
Running Your Source Code
#include <iostream>
int main() {
std::cout << "Hello, world!";
return 0;
}clang++ main.cpp -o hello-world./hello-world
What Just Happened ?!
Last updated
Was this helpful?

