I have a C++ program (.cpp) inside which I wish to use some of the functions which are present inside the C header files such as stdio.h, conio.h, stdlib.h, graphics.h, devi
Just include them inside a extern "C" block an they should work like expected.
extern "C"