Please forgive my complete ignorance here, but I am probably the only beginning programmer that can not get the Hello World program to work. The book I am using to teach myself is telling me to type in the code below, but I keep getting this message after I run the debug tests in Visual Studio 2015 Community:
"Value cannot be null.
Parameter name: solutionDirectory
1 2 3 4 5 6 7 8 9 10 11
Put the code you need help with here.
#include <iostream>
int main()
{
std::cout << "Hello World" << std::end1;
return 0;
}
Please help me figure out what I am doing wrong here.