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