I'm signing up for mentoring at my College, where I will assist Computer Engineering students to program in C++.
So this repository is the result of the study I'm doing for the selection exam.
To build run one script, you can use:
g++ main.cpp -o main
where -o
tells that the output file will be called main
Then you can execute it with:
./main
In addition, you can execute both commands in one line, with:
g++ main.cpp -o main && ./main
this will both compile the .cpp file and right after it, execute it.
I'm following courses of giraffe academy to remember the language.
Here I'll write where I've stopped at the video, so I can track progress
Stopped at: 2:59:11
Link: C++ Programming for Beginners