Quote:
|
Originally Posted by hrushij
I have a prablem with a program...
when i scan a character first then it will be scaned....
but when i want to scan a integer and then charcter.....
it will not be accepted and program ends...
I don't want to use any kind of 'flush' like flushall,fflush....etc.
what is the problem..???
|
yups , u have the "/n" character in still left in your buffer which gives the illusion that the input statement is being skipped .
to solve this use
cin.ignore() function after every input to clear the newline character left in the buffer