fork(3) download
  1. #include <stdio.h>
  2.  
  3. int f() {
  4. char i;
  5. printf("получено %i\n", *(&i+17));
  6. }
  7.  
  8. int main(void) {
  9. f(10);
  10. f(20);
  11. f(30);
  12. f(40);
  13. f(50);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
получено 10
получено 20
получено 30
получено 40
получено 50