Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <conio.h>
// Warning: non-standard header.
void KbFlush()
{
while (_kbhit())
_getch();
}
namespace { const int esc = 27; }
bool KbTest()
{
bool res = false;
if (_kbhit())
{
if (_getch() == esc)
res = true;
else
printf("Press esc to quit...\n");
KbFlush();
}
return res;
}
/// Using pattern:
void testloop()
{
for (;;)
{
/////
if (KbTest())
break;
/////
}
}