hey guys i am having a problem here...
i am working on a new text based rpg and im trying to use a name that someone enters
EXAMPLE
#include <iostream>
using namespace std;
int main()
{
char name;
cout <<" do you remember you name? " << endl;
cin >> name;
cout << name << endl;
system("pause");
return 0;
}
and if i enter my name (Ryan) all it returns is r
any ideas