10 lines
140 B
C
10 lines
140 B
C
#include <stdio.h>
|
|
#include <conio.h>
|
|
|
|
void main()
|
|
{
|
|
printf( "Press any key to continue..." );
|
|
fflush( stdout );
|
|
getch();
|
|
}
|