/* Pause performs the same function as the DOS pause command. JPV 03/29/95 */ #include int y; void main() { printf("Press the key to continue..."); y=getchar(); }