Cin tidak menunggu input

/* cin stops taking input on whitespace encounter
* so if you pass "Prakhar Patel" into cin>>name;
* only "Prakhar" will be stored into name.
* "Patel" will stay in stream and will come into next cin statement.
*/

getline(cin,fullname,'\n'); //use this to capture input stream till \n
Rajprakhar