Skip to content

Instantly share code, notes, and snippets.

@maloi
Last active December 26, 2015 22:08
Show Gist options
  • Save maloi/7220485 to your computer and use it in GitHub Desktop.
Save maloi/7220485 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc,char **argv)
{
setbuf(stdout, NULL);
puts("Hello World!\n");
fflush(stdout);
getchar();
return(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment