My code in netbeans is as follows:

int main(int argc, char** argv) {

    int a = 2;
    int b;
    printf("b = ");
    scanf("%d", &b);
    printf("\n%d",a+b);
    return (EXIT_SUCCESS);
}

The problem is when I run this, the first thing it waits for is the user input, it doesn't show "b = ". As soon as I input something it shows everything.

This is a problem because the user must see the text to know what he needs to input (word or number). How do I fix this?

Note: I'm using MinGW (and MSYS for make).

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

printf is buffered on stdout ... therefore you won't see the output until there is either an end-of-line placed in the buffer, the buffer is filled to its max capacity, or the buffer is explicitly flushed using fflush.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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