fork download
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. void foo() {
  5. srand(4);
  6. printf("%d\n", rand());
  7. }
  8.  
  9. int main() {
  10. foo();
  11.  
  12. srand(4);
  13. printf("%d\n", rand());
  14. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
1968078301
1968078301