← Back to topics
Topic

conio.h not working

v
vendetta17
the server finds conio.h as nonexistent please help fast! i need it
A
Amtrix
Well if it says so then maybe it's not allowed to use this file.
a
adminModerator
conio.h is MS-DOS specific thing... and the server runs Linux.

http://en.wikipedia.org/wiki/Conio.h

However, you don't need that file, just use standard scnaf/printf from stdio.h, or cin/cout from iostream
v
vendetta17
oh yeah its on linux :P oh well guess i'll find another way thx
s
stef.mkd
be cautious with everything that's with ".h" (like math.h) ,they are defined by the OS. the ones without ".h" are compiler/language defined (like iostream)
though math.h is exactly the same everywhere, windows.h doesn't exist even in every windows OS.