Skip to content

Instantly share code, notes, and snippets.

Created January 24, 2016 08:10
Show Gist options
  • Save anonymous/3f2a1d658af451d1b9f6 to your computer and use it in GitHub Desktop.
Save anonymous/3f2a1d658af451d1b9f6 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void hi(int a, int b) {
int i = 3;
return;
}
int main(int argc, char *argv[]) {
hi(1, 2);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment