#include <stdio.h>

int f() {
 char i;
 printf("получено %i\n", *(&i+17));
}

int main(void) {
 f(10);
 f(20);
 f(30);
 f(40);
 f(50);
 return 0;
}
