Quote Originally Posted by Click_here View Post
Code:
...
    printf("\n");
    fflush(stdout);
    }
Fun fact - the '\n' flushes the output buffer, so the fflush will never do anything.
Unless, of course, stdout is fully buffered (e.g., it doesn't point at an interactive device like a terminal).