+ 1
I am compiling c file in Ubuntu Linux command line but there is one promble is conio.h not found help me please
and many anthor header files also not found
3 Antworten
+ 2
Change :
#include <conio.h>
By :
#ifdef _WIN32 // both 32 and 64 bits
#include <conio.h>
#else
// include unix equivalent headers
#endif
And change every function conio provides that has a different name and / or parameters as the unix one
+ 2
conio, it's for windows
you need to install it seperately on Linux
+ 2
Don't use conio.h