cout<<(char)290<<endl;
I get " as the answer.
cout<<(char)20000<<endl;
Here I don't get anything.
When char can take integer values from -128 to 127 and both 290 and 20000 are welll out of this range,
then why is there an output in the first case?