getche


conio.h


/*
Write a program in C for getche
*/

#include<stdio.h>
#include<conio.h>

main()
{
   printf("Waiting for a character to be pressed from the keyboard to exit.");

   getche();
   return 0;
}

Post a Comment

0 Comments