#include int main() { int * q; printf( "Got here" ); /* this is buffered and therefore we don't see it */ printf( "Got here\n" ); /* this will force the buffer to be flushed */ *q = 1234; return 0; }