COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
hello.cpp
Go to the documentation of this file.
1// this is my first C++ hello world program
2#include <iostream>
3using namespace std;
4
5int main() {
6 cout << "Hello World!" << endl;
7 return 0;
8}
int main()
Definition hello.cpp:5