Skip to content

Instantly share code, notes, and snippets.

@cr3denza
Created March 31, 2015 07:52
#include <stdio.h>
main(){
char buf[64];
memset(buf, 0, 64);
read(0, buf, 64);
printf(buf);
getchar();
printf("I am safe!, %s\n", buf);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment