First off, here's the source code:
#include <stdio.h>
#include <conio.h>
void main()
{
for(;
{
printf("PLAY ME!!", '\x20');
if(kbhit())
{
break;
}
}
}
Whenever I try to compile it under Dev C++, I always get this annoying error message:
implicit declaration of function `int kbhit(...)'
Dandgit, how can I get rid of this problem?
#include <stdio.h>
#include <conio.h>
void main()
{
for(;
{
printf("PLAY ME!!", '\x20');
if(kbhit())
{
break;
}
}
}
Whenever I try to compile it under Dev C++, I always get this annoying error message:
implicit declaration of function `int kbhit(...)'
Dandgit, how can I get rid of this problem?