I'm trying to create a program where the user is asked a question and has a few seconds to answer the question, or else the program stops input.
Now my problem is I'm unable to get my program not to block input. I am able to input data, but when I don't and the timer runs out it keeps asking for input.
I'm running on Windows and use Code::Blocks in case it's important. If someone could explain to me what I'm doing wrong, it would be appreciated.
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <pthread.h>
#include <conio.h>
int key = 0;
int GradeTotal = 0;
//runs an empty loop every iteration F.E. for loop
void timer(int seconds)
{
clock_t wait = (clock() + (seconds * CLOCKS_PER_SEC));
while(clock() < wait){}
}
void timeleft()
{
int index;
for(index = 5; index >= 0; index--)
{
if(key != 0)
{
pthread_exit(timeleft);
}
timer(1);
if(index == 0)
{
printf("\n\nTime's up!");
}
}
}
void questions()
{
int key;
printf("what is 1 + 1?\nAnswer: ");
while(1)
{
if(_kbhit())
{
key = _getch();
printf("%c",key);
break;
}
}
if(key == 50)
{
GradeTotal += 1;
}
}
int main()
{
pthread_t thread1,thread2;
int index;
int seconds = 0;
pthread_create(&thread1, NULL, questions, NULL);
pthread_create(&thread2, NULL, timeleft, NULL);
pthread_join(thread1, NULL);
pthread_join(thread2, NULL);
printf("\n\nGrade: %d",GradeTotal);
return 0;
}