InstructionInstructions Install and configure Visual Studio Code (or Visual Studio), run Hello World C++ program. Upload screenshot of VSC and a functioning execution of the program listed below. After you watched the video on how to download, install VSC and C++ Compiler. create your first project in Visual Studios Code, copy the code below, compile it, submit screenshot of VSC, your code and code output. You may also use Visual Studio. ---------------------------------------------------------------------------------------------------- #include using namespace std; int main() { // Write C++ code here cout << "Hello my Name is: Mike" << endl ; cout << "My major is: Computer Science" << endl ; return 0; } ------------------------------------------------------------------------------------------------- Code Explanation "int main()" is required for all C++ programs it is the location where the program will start running. The int means the program will return an integer value upon termination. By convention return (0) means success and return (-1) means failure. all programs are surrounded by the block characters {} #include - imports the input and out verb (cout & cin) "<<" tells cout the next string is to be printed to the output file "endl" is a new line or skip a line "return 0" return a 0 to the operating system and stop the program.