fork download
  1. #include <stdio.h>
  2. int a = 10;
  3.  
  4. void func() {
  5. int b = 5;
  6. static int c = 4;
  7. static int d;
  8. c = 12;
  9. printf("%d %d %d %d ", a, b, c, d);
  10. a--, b++, c++, d++;
  11. }
  12.  
  13. int main(void) {
  14. func();
  15. func();
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
10 5 12 0 9 5 12 1