I have set up Eclipse for c programming on my Windows machine, I have successfully run a \"hello, world\" program. However, when I try to ask for user input and run the prog
Try adding fflush(stdout); after the first printf. This has a decent chance of being of help, in case Eclipse does not auto-flush after '\n'.
fflush(stdout);
printf
'\n'