I'm not sure I understand what your problem is. Do you mean that the output doesn't go into the
*run* buffer ? If so how do you launch your program ?
crewy
it only start to appear on screen after the loop was set to greater than ~760 .
I don't understand what you mean there. Could you rephrase it ? Or give code example ?
Edit: I did a simple test, and it seems that printf is buffering the output a lot more than it would in a console. You can solve that by adding
fflush( stdout ); after
printf when you want to be sure that the output has been "sent to the screen". And it might be a good idea to fill an issue on the
4coder github.