Skip to content

Instantly share code, notes, and snippets.

@rwaldron
Forked from dherman/node.c
Created July 19, 2013 03:35
Show Gist options
  • Save rwaldron/6034926 to your computer and use it in GitHub Desktop.
Save rwaldron/6034926 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
int *p = 0;
char line[1024];
printf("> ");
fgets(line, 1024, stdin);
*p = 12;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment