/* L3-5.cpp (Quotes and Slashes) Compile and run this program. What is wrong? */ #include using namespace std; int main() { char x; x = 'A'; cout << "The first letter in the alphabet is " << x << endl; cout << "I told the interviewer "My name is Dan"" << endl; cout << "The file is located in c:\windows\games\solitaire" << endl; return 0; }