C programming problem

Status
Not open for further replies.

hrushij

Broken In
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..???
 

Garbage

God of Mistakes...
I think it's bcoz of '\n' character remains in buffer.
If u want to override this problem then u have to flush the buffer anyhow.
 

Zeeshan Quireshi

C# Be Sharp !
hrushij said:
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 :)
 

Garbage

God of Mistakes...
Zeeshan Quireshi said:
yups , u have the "/n" character in still left in your buffer which gives the illusion that the input statement is being skipped .
dude, it's '\n' & NOT '/n'. It's an escape sequence.
 
if u r accepting single characters as input .. then u can use getch() ir getche() in ur prog ... but if u want to enter integers (mean more than 1 char ) to skip the "\n" u have to use flushing ..........
 

Saharika

In the zone
for any kind of c programming codes i have found this site very helpful for academic purpose...it is just starting but i can see very good C programming library already...
i hope it is helpful for acedemic purpose
*visitguru.com/forum/viewforum.php?f=23

have a look
 
Status
Not open for further replies.
Top Bottom