well i need to deal with white spaces in charecter arrays...
with static arrays its fine..
char ss[50];
cin.getline(ss, sizeof ss);
.... //deals with white spaces
cout<<"Formatted ss :"<<ss;
but the problem m facing s with dynamic char array..
char * ss =new char;
now i cant use cin.getline(..) here as i declared pointer....and using cin eleminates the possiblity f dealn with white spaces as it ignores white spaces..
using string s also not helpful..
PLEASE HELP ASAP....