fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main(void) {
  6.  
  7. int a;
  8.  
  9. srand((unsigned)time(NULL));
  10. a=rand();
  11.  
  12. printf("%d",a%2);
  13. }
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
1