Dani Moncayo wrote:
> > There is no newline in the intended output, so perhaps the output isn't
> > flushed yet. Does it appear if you step through the rest of the program?
> 
> I've tried it and not, it never appears, even after I've reached the
> end of the program.

Please add a newline to the output.  I think that without the newline
the output may be covered by other output.  I think it likely that the
output is actually being output but just covered.

-  printf("hello, world!");
+  printf("hello, world!\n");

Bob

Reply via email to