What's
the Count?
Problem 5Why is
the emitter of an unused transistor in U2 shown connected to ground?

ANSWER

Problem 6What
is wrong with this function?
#define HEAD 1
#define TAIL 0
int coin_toss(void)
{
if (rand()&1) return HEAD;
else return TAIL;
}
ANSWER 
8--99
|