Author Topic: where to download libraries  (Read 8708 times)

Offline jasonfmp

  • Single posting newcomer
  • *
  • Posts: 3
where to download libraries
« on: October 01, 2016, 10:44:58 am »
hi
i wanna download libraries for my c++ codeblocks , i use gnu gcc compiler
i need conio h library now but can't find it in any website :'(

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3352
Re: where to download libraries
« Reply #1 on: October 01, 2016, 12:24:17 pm »
codeblocks is not a compiler and we do not support compiler questions on this forum

i would recommend to use google...

Offline Krice

  • Almost regular
  • **
  • Posts: 172
Re: where to download libraries
« Reply #2 on: October 02, 2016, 08:57:07 am »
It should be installed with the compiler, at least on Windows gcc (MinGW) has it. But it may not be a part of the compiler's library on another platform. If you are on Windows you can download Code::Blocks with the compiler included (mingw packages). Then you have conio.h for sure.

Offline rlb

  • Multiple posting newcomer
  • *
  • Posts: 14
Re: where to download libraries
« Reply #3 on: October 03, 2016, 09:10:56 am »
Also beware that conio.h is not a library, it's only a header file. All it contains is declarations, not the actual function code. So if you happen to find a loose conio.h without the library that it calls, you're no better off. So yes, download MinGW, it provides both necessary parts.
Richard Bos