Skip to content

Instantly share code, notes, and snippets.

@mwcampbell
Created February 6, 2011 20:53
Show Gist options
  • Save mwcampbell/813707 to your computer and use it in GitHub Desktop.
Save mwcampbell/813707 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void hello() {
printf("Hello, World\n");
hello();
}
int main() {
hello();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment