Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
latextemplates
GitHub Repository: latextemplates/scientific-thesis-template
Path: blob/main/code/helloworld.cpp
341 views
1
#include <cstdlib>
2
#include <iostream>
3
4
int main(int argc, char *argv[]) {
5
// print Hello World to the stdout
6
std::cout << "Hello World!" << std::endl;
7
return EXIT_SUCCESS;
8
}
9
10