Page 1 of 1

C++ question plz help

Posted: Sat Oct 17, 2009 1:00 am
by pvtlink
Hello i was wonder how you can change a string name cause when i try to do
#include <iostream>
#include <windows.h>
#include <string>
using namespace std;

int main ()
{
char *line = "short line for testing";

sting s1;
s1 = "Name";
cout << "Hello what is your name?\n";
cin >> s1;
cout << "Hello " << s1;


system("PAUSE");
return 0;
}
there's a problem and i don't know what it is i would appreciate if someone could help me.

Re: C++ question plz help

Posted: Sat Oct 17, 2009 1:35 am
by Perry
It is just spelling mistake. Look at line ten...

Re: C++ question plz help

Posted: Sat Oct 17, 2009 1:41 pm
by hallsofvallhalla
nice catch perry :)

Re: C++ question plz help

Posted: Sat Oct 17, 2009 7:23 pm
by pvtlink
Thank you i didn't see that.

Re: C++ question plz help

Posted: Sat Oct 17, 2009 8:25 pm
by Perry
pvtlink wrote:Thank you i didn't see that.
No problem. :D Glad to help. Post anymore question you might have and I will see what I can do to help.