Name the commands that are included in the header file <conio.h>
Answers
Answered by
1
Answer:
kbhit
cgets
cscanf
putch
cputs
cprintf
clrscr
getch
Explanation:
kbhit: Determines if a keyboard key was pressed
cgets: Reads a string directly from the console
cscanf: Reads formatted values directly from the console
putch: Writes a character directly to the console
cputs: Writes a string directly to the console
cprintf: Formats values and writes them directly to the console
clrscr: Clears the screen
getch: Get char entry from the console
Similar questions