#include #include void main() { char ch; printf("Press the ~ key to stop\n"); while(ch!='~') { ch=getche(); } printf("\nDone!\n"); }