fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. #define MY_TIME 0
  5.  
  6. int call_a(int a, int b, int c, int d) {
  7. printf("%d %d ", c,d);
  8. }
  9. int func(int x) {
  10. printf("MYTIME:%d", MY_TIME);
  11. printf("MYTIME:%d",MY_TIME);
  12. call_a(34,67, MY_TIME,MY_TIME);
  13. }
  14.  
  15. int main(){
  16. func(42);
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
MYTIME:0MYTIME:00 0