Quiz Game
Posted: Sat Sep 12, 2009 1:26 pm
hi i am going to make a quiz game and i have a question... how would you make each question come up randomly??
all help appreciated
all help appreciated
int randomQ = rand(2);
switch(randomQ)
{
case 0:
strcpy(textActor.text, "Question number one is?");
break;
case 1:
strcpy(textActor.text, "Does this make sense?");
break;
}