vote up 0 vote down star

I have a function (in C) that gets input from the user, (using scanf) stores it in an unsigned int, and returns the input to other functions that handle it:

unsigned
int input(void)
{
    unsigned int uin;

    scanf("%u", &uin);
    return val;
}

I was wondering, being as I ought to flush stdin, I'd want to use a while loop using getc, vis-a-vis:

while (getc != '\n') {
   ...
}

But, I'm not sure of how to:

A) Do operations inside of getc, as in how I ought to handle checks and concatenate the value, to each character gotten, or, whether or not I'm to getc, and then concatenate from there, removing scanf entirely.

B) Whether this is even the most proper way to do this.

Could some kind person give me some tips and pointers :)

Thanks.

flag
1  
So, I think you should look into the fgets() function and forget all about this business of flushing stdin. :) – BobbyShaftoe Oct 21 at 0:41

1 Answer

vote up 2 vote down

I'd add %*[^\n] to the end of the scanf format string. The * means it should read but ignore the matching input, and the [^\n] means anything but a newline, just like in a regex.

link|flag
That's it?! Wow, hehe, I thought I'd have to add some whizzbang but: unsigned int function(void) { unsigned int x; scanf("%*[^\n]u", &x); return x; } Should work, no? – stdinflush Oct 21 at 1:03
No -- you add that to the end of the format string you already had. – Jerry Coffin Oct 21 at 2:20
Ah, scanf("%u%*[^\n]", &x); Brainfart :\ cheers – stdinflush Oct 21 at 6:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.