char *name,*nickname,*hobby;
cout<<"Please enter your name:";
cin>>name;
cout<<"Please enter your nick name:";
cin>>nickname;
cout<<"Please enter your hobby:";
cin>>hobby;

anything wrong with this as the program will stop running?