#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int b_rand();
int main(void)
{
int i;
int result;
srand( (unsigned) time( NULL ) );
for(i=0;i<=5;i++)
{
result = b_rand();
printf("%d ", result);
}
printf("\n");
return 0;
}
int b_rand()
{
return (rand()%2);
}