#include #include #include #include //stdout is line buffered //setbuf(stdout,NULL); //helpful for debugging //fflush(stdout); int main(void){ printf("Hello\n"); //stored printf("Goodbye"); printf("Potato"); int *p = NULL; // *p = *p + 1; //Crash!!!! Runtime error return 0; //anything in buffer gets printed }