1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
char array[4]; int call_me (int *arg) { return (*arg) - 1; } int val = 1; int main () { return call_me (&val); }