conio.h is defined as................?
Answers
Answered by
7
console input and output header file
Answered by
0
Console input and output header
Explanation:
- This header file in C language provides console input and output functions.
- It is not a part of the standard C library. The compilers targeting LUNIX and UNIX do not contain this library.
- Whereas the compilers targeting Win32, DOS, DOSX, OS/2, Windows, etc. contain this header file.
- It was originally implemented in Lattice C.
- It provides the following functions:-
- getch() - reads character from keyboard
- getche() - reads character input and displays on screen
- putch() - displays character on screen
- clrscr - Clears the screen
- textcolor() - Changes the text colur of the output displayed
- textbackground() - Changes the background of the text displayed.
- cgets() - Reads string input
- cputs() - Prints string output.
- kbhit - Determines whether a key was pressed or not. etc.
Similar questions