+ 5
What is include conio.h and getch stands for?? In c++
how?
3 Antworten
+ 6
1. include is a directory and all the header files like stdio.h, conio.h are kept there.
2. conio.h stands for "Console Input Output Header File” , which manages input/output on console based application.
+ 2
conio.h refers to the header file consoleinputoutput and getch is one of its predefined functions.
getch is used to take character input.