first commit

This commit is contained in:
ZennDev1337 2023-12-20 16:30:40 +01:00
commit d47f1dc602
9 changed files with 1247 additions and 0 deletions

13
Code/CPP/CPP-Basics.md Normal file
View file

@ -0,0 +1,13 @@
# Structure of a Program
Every C++ program must have a function named **main** (all lower case letters). When the program is run, the statements inside of _main_ are executed in sequential order.
```
#include <iostream>
int main()
{
std::cout << "Hello World!";
return 0;
}
```