Created
February 22, 2021 21:34
-
-
Save enebo/395b1561ff9da78abcfd37dc97079659 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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