I have compilation errors to just simply output a cout message. Below is my code:
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main()
{
    char letter = 'a';
    short age = 10;
    int cout = 575;
    long numStars = 985632145;
    float pi = 3.1;
    double price = 89.65;
    string season = "summer";
    cout << "Letter: "<< letter << endl;
    std::cout << "Age: " << age<< endl;
    std::cout << "Cout: " << cout << endl;
    std::cout << "Number Stars: " << numStars << endl;
    std::cout << "Pi: " << pi << endl;
    std::cout << "Price: " << price << endl;
    std::cout << "Season: " << season;
    system("pause");
    return 0;
}
The errors I get are on the line:
cout << "Letter: "<< letter << endl;
I have tried reinstalling VS2015 but that didn't help.
 
     
     
    