Created
April 3, 2016 23:04
-
-
Save kirbyUK/af4e9636194d13756336833b06789f2e to your computer and use it in GitHub Desktop.
Reversing Example
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
#include <stdio.h> | |
void f1() | |
{ | |
int a = 1, b = 2, c = 3; | |
} | |
void f2() | |
{ | |
int a, b, c; | |
printf("a = %d, b = %d, c = %d\n", a, b, c); | |
} | |
int main() | |
{ | |
f1(); | |
f2(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment