Skip to content

Instantly share code, notes, and snippets.

@eudoxia0
Created April 27, 2014 15:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eudoxia0/11349109 to your computer and use it in GitHub Desktop.
Save eudoxia0/11349109 to your computer and use it in GitHub Desktop.
Buggy 'Hello, world'
#include <stdio.h>
int main () {
char* strings[] = {
"hello"
"world"
};
int a = 10;
printf("%s, %s!\n", strings[0], strings[1]);
return a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment