Skip to content

Instantly share code, notes, and snippets.

@enebo
Created February 22, 2021 21:34
Show Gist options
  • Save enebo/395b1561ff9da78abcfd37dc97079659 to your computer and use it in GitHub Desktop.
Save enebo/395b1561ff9da78abcfd37dc97079659 to your computer and use it in GitHub Desktop.
int foo() {
int i;
i = 42;
}
int bar() {
int i;
return i;
}
int main() {
foo();
printf("%d\n", bar());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment