C/DeitelC/Chapter5/flip.c
2025-05-08 20:47:54 +03:00

7 lines
60 B
C

#include <stdlib.h>
int flip() {
return rand() % 2;
}