Question: Determine what the problem is with the snippet of code below and fix it. Do not change the prompts (lines containing cout). Submit source code
Determine what the problem is with the snippet of code below and fix it. Do not change the prompts (lines containing cout).
Submit source code (cpp) file with your fix.
string fullName; int age; cout << "Enter your first and last name." << endl; cin >> fullName; cout << "Enter your age." << endl; cin >> age; cout << "You are " << age << " years old, " << fullName << endl;
Code must work within a full fledged program. Include a comment containing your name, course code and date.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
