Found something:
This is basically how all C++ programs start, and I even understand it somewhat.
Also bookmarked that site:
https://www.cplusplus.com/doc/tutorial/ ... structure/
Now gonna watch that tutorial again, but this time I will be typing along.
This is basically how all C++ programs start, and I even understand it somewhat.
Code: Select all
#include <iostream>
using namespace std;
int main ()
https://www.cplusplus.com/doc/tutorial/ ... structure/
Now gonna watch that tutorial again, but this time I will be typing along.