Subj : Re: Windows Prompt Runtimes SHORT-Debug To : borland.public.cpp.borlandcpp From : Bruce Salzman Date : Mon Jun 21 2004 11:22 am > #include should be #include #include Use getch() instead of getchar(). getch() waits for a keypress, getchar() returns immediately. Or do this: int c; while ((c = getchar()) != '\n'); // waits for an Enter key. Regards, Bruce .