i need borlandc++ software .can any one help me please i need it for free

Dani AI

Generated

Short, practical guidance for based on the replies already here.

Decide why you want "Borland C++." If the goal is learning modern C++ or using current libraries, pick a maintained, free toolchain that supports current C++ standards and security updates. If you must build or run legacy projects that were written for a Borland-era compiler, treat the Borland toolchain as a legacy dependency and isolate it.

If you need the old Borland compiler for compatibility:

  • Run it inside an isolated virtual machine (snapshot before you change anything). Use an OS that matches the era of the compiler so SDKs and drivers behave as expected.
  • Keep builds 32-bit if the toolchain is 32-bit. Many linker and library formats differ between old and modern toolchains, and bitness mismatches cause unresolved symbols.
  • Back up sources, copy only source files (not project/IDE files) and rebuild inside the VM.

If you want to move off Borland:

  • Start by compiling with a modern compiler and fix the easy portability issues: replace deprecated headers (for example older header forms), remove or replace compiler-specific intrinsics, and add standard includes or std:: qualifiers where needed.
  • Enable warnings and treat them as a guide; unresolved link errors usually mean library format or calling-convention mismatch.

Troubleshooting tips and cautions:

  • If you see many missing system symbols, check whether libraries are the correct format for your compiler and whether you are building 32 vs 64 bit.
  • Avoid downloading old compilers from untrusted sites; seek official vendor archives or use an isolated VM for any untrusted binary.
    This builds on 's compatibility note and complements the alternative-tool suggestions posted earlier.

Recommended Answers

All 7 Replies

Yes, you can download it....try a little searching on google and you'll find it. Microsoft visual c++ is also a good compiler!

personally in my experience the best compiler i have found is dev-c++ its free and its the fastest.

personally in my experience the best compiler i have found is dev-c++ its free and its the fastest.

Personally, I would choose Code::Block over Dev-C++

I am but a humble part-time hobbyist programmer, but I have found Dev-C++ to work very well. It pwns.

Mingw and VI for me. I have used borland before, you can get the old version for free, but alot of SDKs, like DirectX SDK, do not work well with the old borland compiler.
if you just want to experiment with STL or study C\C++ then it should work fine.

you can get the borland 5.5 compiler for free.

Member Avatar for Member #114696

Borland apart for C++ Compiler 5.5 also distributes a free IDE called Turbo Explorer C++. You can get that at www.turboexplorer.com.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.