1

Can anyone tell me which version of turbo c will work on windows 7 and from where to download it free...

abhis
  • 19
  • 2

4 Answers4

3

You can download it here. This is from the Embarcadero site; it does require registration before you can download it.

I do not know if you will be able to use this on Windows 7. I recently installed Borland Pascal 7 on a DOS 6.22 VM, just for kicks; the BP7 cannot be run on 64 bit Windows 7.

If you are targeting the windows platform have you considered looking at Visual C++ Express? It is free and quite functional.

Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055
Chris Taylor
  • 52,623
  • 10
  • 78
  • 89
1

Turbo C can not be used to target Windows 7. You may be able to run your Turbo C program in a compatibility mode but, unless there's a newer version I'm unaware of, you won't even be able to do that on Windows 7 64-bit.

Jonathan Wood
  • 65,341
  • 71
  • 269
  • 466
1

I don't recommend Turbo C. It's obsolete.

Reasons

  • Produces 16bit applications which dosen't work in modern OS.
  • The code is DOS specific.
  • Autocomplete not supported.
  • Dosen't support modern C++ syntax.
  • The project is discontinued.

I recommend Visual Studio. It's good for programming.

That said, Turbo C is still downloadable.

  • Can you say why you think Turbo C is obsolete? – Max von Hippel Aug 31 '18 at 03:39
  • 1
    It produces 16bit applications. Which can't be executed in modern computers. The code is **DOS** specific. It don't have autocomplete feature. Doesn't support modern C++ syntax. The project is discontinued. –  Aug 31 '18 at 04:01
  • I'm convinced! Thank your for elaborating. – Max von Hippel Sep 02 '18 at 05:19
  • 1
    Turbo C produces, 16-bit DOS specific code, which in modern computers can't be run. Since Windows 7 or so Microsoft discontinued supporting 16-bit applications, also nor GNU/Linux's `wine` can emulate with this kind of architecture. Yes, that was I two years ago @MaxvonHippel. – tripulse Aug 02 '20 at 12:12
1

Turbo C will work up to Vista. It will also work in 32 bit editions of Windows 7, in XP or 98 compatibility mode. It will not work on any 64-bit versions of Windows.

For 64 bit Windows I recommend DOSBox.

Prof. Falken
  • 24,226
  • 19
  • 100
  • 173