..how can i display what I've just input, including space????? example Name: Jazel Juarez ---> I've tried it but only the first word did print out ----- char question[] = "Name: "; char urname[80]; cout<<question; getline(cin,question); cin>>urname; cout<<urname<<"!"; -->the program above... have 2 errors 1.declaration syntax error 2. the function getline should have prototype please help me thanks!