Header files in Codechef for C

What are available header files in codechef compiler?

All headers supported by the GCC compiler are available for C. The common ones are
stdio.h ,
stdlib.h ,
math.h ,
, string.h which are sufficient for most questions.

What other header files do you need?

1 Like

especially conio.h is not supported !!!

1 Like

Its not a codechef compiler, it is actually a gcc’ one. Check gcc manual page for more info about standard headers.

I think this will help. http://gcc.gnu.org/onlinedocs/cpp/Search-Path.html

1 Like