Skip to content

Instantly share code, notes, and snippets.

@mopp
Last active December 25, 2015 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mopp/6986890 to your computer and use it in GitHub Desktop.
Save mopp/6986890 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
char buf[100];
printf("mopp test\n");
fflush(stdout);
scanf("%s", buf);
printf("%s\n", buf);
fflush(stdout);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment