Saturday, 24 December 2011

getche

#include<stdio.h>
#include<conio.h>
 
main()
{
printf("Waiting for a character to be pressed from the keyboard to exit.");
 
getche();
return 0;
}

No comments:

Post a Comment