Can anyone tell me when to add conio.h header file. Is it when you are using getche() function or it has some other functionality as well.
purpose of conio.h in C
Collapse
X
-
Originally posted by sicariejimhakans-
Is this something that Google cannot tell you? Did you research this yourself before you posted?
I have read that conio is used to perform "console input and output" from a program, which is what i dont understand. stdio.h is used for the same thing right?Comment
-
I have read that conio is used to perform "console input and output" from a program, which is what i dont understand. stdio.h is used for the same thing right?
stdio.h is standard. conio.h is not. It may not exist. If it does, it's compiler specific. As there is no standard for conio.h, your conio.h may not be, and probably isn't, the same as someone else's here. If they have it that is.Comment
Comment