I am trying to teach myself C++ with an old book I've had lying around and have multiple errors trying to run the initial HelloWorld program as written in community visual studio 2017. Here is the code.
#include <iostream.h>
int main()
{
cout << "Hello World!\n";
return 0;
}
When I try to run the program, I get the following errors: