Visual studio corrected it, so... Is it right? I had this and it said to have this..
1 2 3 4 5 6 7 8
I had
void nme() { cout << " Name:" << setw(3) << name << endl; }
Visual Studio said to add ; after void()nme
void nme(); { cout << " Name:" << setw(3) << name << endl; }
Sorry for the dumb question