WaltP
Posting Sage w/ dash of thyme
10,505 posts since May 2006
Reputation Points: 3,348
Solved Threads: 944
~s.o.s~
Failure as a human
11,938 posts since Jun 2006
Reputation Points: 3,281
Solved Threads: 734
webcourse.cs.technion.ac.il/234112/Winter2004-2005/en/ho_Download%20Turbo-C.html -
Your link is just a tad late isn't it (by a year or so) ? :-O
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
Well there is Turbo C++ Explorer 2006 , which is new and latest one.
But if you want older one(they do not support ANSI C++) then look for Turbo C++ 4.5. But no hopes to fine it easily. Also you could get Borland C++ 3.1(there is a window version in addition to DOS one) or 4x which is almost similer to Turbo C.
So all you could do is search with google, but with little hopes.
vishesh
Nearly a Posting Virtuoso
1,381 posts since Oct 2006
Reputation Points: 85
Solved Threads: 42
I would suggest Visual Studio C++ Express edition
That teaches you C++.NET not real C++
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
That teaches you C++.NET not real C++
Wrong. It is a c and c++ compiler too and is fairly good at conforming to c++ standards. But I don't suggest it for beginners because the IDE is a little complicated to learn to use.
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
Wrong. It is a c and c++ compiler too and is fairly good at conforming to c++ standards.
Not the express edition ?Create .NET Framework applications with advanced features such as data access, networking, and built-in printing support.
Build 32-bit native code applications designed for Windows using the Windows Platform SDK .
without the platform SDK it cant make standard Win32 apps, making it .NET only.
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
>Not the express edition ?
The C/C++ compiler is identical in all editions.
>without the platform SDK it cant make standard Win32 apps, making it .NET only.
Well, technically Win32 applications aren't "real" C++ either. Only standard C++ is "real", and you can write both standard C (C95) and standard C++ (for the most part) with the express edition. Don't trust the propaganda, Microsoft is trying to push their .NET framework.
Narue
Bad Cop
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
Not the express edition ?
without the platform SDK it cant make standard Win32 apps, making it .NET only.
win32 apps are not the same thing as standard c++ programs. The Express edition compiles C and C++ with or without the Windows Platform SDK. If you want to write win32 api programs then you are right -- you have to also download the SDK.
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
Okay i believe you (im a bit of a C noob)
jbennet
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
>like in the main you MUST have int as the return type irrespective of the actual return.
That's a language rule. The main function must return int. If you return anything else, and there's no implicit conversion, you've likely entered the realm of undefined behavior.
>And I don't think it matters which compiler we use.
As long as your compiler conforms to the standard you intend to follow, it doesn't matter.
Narue
Bad Cop
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401