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