Welcome to My First C++ Tutorial Today I will be show you the viewer how to make a basic C++ hello world console application!
#include <iostream> //The include statement is a way to incorporate different libraries into our code
//NOTE: WE MUST include iostream in our project
int main() {...