PDA

View Full Version : C programming problem


hrushij
17-06-2007, 07:17 AM
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..???

blueshift
17-06-2007, 07:30 AM
where is the program?

ashfame
17-06-2007, 09:26 AM
pl describe ur problem

::cyborg::
17-06-2007, 11:37 AM
use &d and use %c

in the scanf function

Garbage
17-06-2007, 12:24 PM
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
17-06-2007, 02:08 PM
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
17-06-2007, 08:06 PM
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.

piyush gupta
18-06-2007, 10:32 AM
Where is your program?

harryneopotter
19-06-2007, 03:20 PM
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 ..........

hrushij
20-06-2007, 05:53 AM
ok got it.....thx guys

Saharika
21-06-2007, 01:24 PM
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
http://visitguru.com/forum/viewforum.php?f=23

have a look

hrushij
23-06-2007, 07:20 AM
thank you.....my friend