I have written a printf()
statement like below:
printf("hello\n");
this works fine when built using Linux' gcc compiler. However if I write
printf("hello");
the print doesn't appear on the screen. There is some buffering mechanism it seems? Can anybody give me more information on this?