- getch() function is also a console function that is define in conio.h Heador file.
-It hold the screen upto any character to be push.
Syntax-
getch();
program-
#include< stdio.h>
#include
int main()
{
printf("First statement");
getch();
printf("Second Statement");
}
First statement
Second Statement