Skip to content

Instantly share code, notes, and snippets.

@tyrion
Last active November 2, 2015 21:51
Show Gist options
  • Save tyrion/3c1a0895c0c03987814e to your computer and use it in GitHub Desktop.
Save tyrion/3c1a0895c0c03987814e to your computer and use it in GitHub Desktop.
#include <stdio.h>
void function(int a, int b, int c) {
char buffer1[8];
buffer1[12] += 7;
}
void main() {
int x = 0;
function(1, 2, 3);
x = 1;
printf("%d\n", x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment