I'm trying to run this code that I found online to figure out how to run C++ on Visual Studio Code but it keeps telling me "Please update your includePath. IntelliSense features for this translation unit... will be provided by the Tag Parser." as well as "could not open source file "iostream" (no directories in search list)". VC told me to download git and so I did. Its site also told me to download mingw-w64 and I did so. How do I edit includePath settings? Please keep in mind that I am a complete beginner to C++ but need to be able to use something for a class and was recommended VC.
#include <iostream>
int main()
{
std::cout << "Hello World!";
std::cout << std::endl;
return 0'
}