I am copying this directly from a textbook.
#include <iostream>
using namespace std;
int main()
{
string myHello = "This is Chapter 3 already?";
cout << myHello << endl; //this part is not working
return 0;
}
Why isn't this code working?
I have tried looking through the book for solutions but no solution is provided or available.