Skip to content

Instantly share code, notes, and snippets.

@kirbyUK
Created April 3, 2016 23:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kirbyUK/af4e9636194d13756336833b06789f2e to your computer and use it in GitHub Desktop.
Save kirbyUK/af4e9636194d13756336833b06789f2e to your computer and use it in GitHub Desktop.
Reversing Example
#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