Forum     

Go Back   Digit Technology Discussion Forum > Software > Programming
Register FAQ Calendar Mark Forums Read

Programming The destination for developers - C, C++, Java, Python and the lot


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 21-06-2008, 12:04 AM   #1 (permalink)
Right Off the Assembly Line
 
Join Date: Jun 2008
Posts: 23
Default Turbo C++ 2.0 Needed


hey guys..



Can some 1 please tell me where i can get Turbo C++ 2.0

borland is providing only Turbo C..in its museum.....i cant use 3.0 coz it smhow never works properly in windows XP....can sm1 please help me.....
zorrotech2008 is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 21-06-2008, 09:07 AM   #2 (permalink)
Legen-wait for it-dary!
 
dheeraj_kumar's Avatar
 
Join Date: Dec 2004
Location: Chennai
Posts: 2,471
Default Re: Turbo C++ 2.0 Needed

http://dn.codegear.com/article/20841

http://dn.codegear.com/article/0,1410,21751,00.html

or get Relo. Google it.
__________________
If the Start Windows Restart when Windows starts check box is checked Windows Restart will start automatically every time Windows is started. - Actual excerpt from a windows program help file
dheeraj_kumar is offline  
Old 21-06-2008, 11:16 PM   #3 (permalink)
Right Off the Assembly Line
 
Join Date: Jun 2008
Posts: 23
Default Re: Turbo C++ 2.0 Needed

hey dheeraj d first link is for turbo c.......not c++ nd d second one is turboC++..but sm how its not working properly....wotever i print on d screen using cout or nethin else it doesnt get printed.....


can sm1 please provide me a working version...
zorrotech2008 is offline  
Old 23-06-2008, 03:12 AM   #4 (permalink)
Commander in Chief
 
QwertyManiac's Avatar
 
Join Date: Jul 2005
Posts: 6,658
Default Re: Turbo C++ 2.0 Needed

Why do you persist in using deprecated software? Would you do the same for your web browser and use say, IE 5 instead of today's version, IE 7?

Get a better compiler set, for your own good. What would you miss, a clear screen function you can obviously live without cause life is not all command line driven programs?
__________________
Harsh J
www.harshj.com
QwertyManiac is offline  
Old 23-06-2008, 09:39 PM   #5 (permalink)
Legen-wait for it-dary!
 
dheeraj_kumar's Avatar
 
Join Date: Dec 2004
Location: Chennai
Posts: 2,471
Default Re: Turbo C++ 2.0 Needed

@zorrotech2008

Cant help you with that...

Go with Querty's suggestion. I would recommend that too. Visual C++ can be used.
__________________
If the Start Windows Restart when Windows starts check box is checked Windows Restart will start automatically every time Windows is started. - Actual excerpt from a windows program help file
dheeraj_kumar is offline  
Old 23-06-2008, 10:35 PM   #6 (permalink)
Right Off the Assembly Line
 
Join Date: Jun 2008
Posts: 23
Default Re: Turbo C++ 2.0 Needed

Hey dheeraj .....nd qwerty ive actually tried using visual c++...but smhow it doesnt recognize even simple coding......first of all its showing me an error dat iostream.h does not exist.......nd iostream (without .h) seems to work......but even after dat it is showing me errors like cout nd cin unrecognized statements.....nd.....if i use gcc compiler format nd use std namespace it complies properly but shows me sm error dat mscv80d.dll not found....can sm1 help me wid dat....plzzzzzzzzzz...






zorrotech2008 is offline  
Old 24-06-2008, 06:44 PM   #7 (permalink)
C# Be Sharp !
 
Zeeshan Quireshi's Avatar
 
Join Date: Jun 2006
Location: Toronto
Posts: 1,805
Default Re: Turbo C++ 2.0 Needed

Quote:
Originally Posted by zorrotech2008 View Post
Hey dheeraj .....nd qwerty ive actually tried using visual c++...but smhow it doesnt recognize even simple coding......first of all its showing me an error dat iostream.h does not exist.......nd iostream (without .h) seems to work......but even after dat it is showing me errors like cout nd cin unrecognized statements.....nd.....if i use gcc compiler format nd use std namespace it complies properly but shows me sm error dat mscv80d.dll not found....can sm1 help me wid dat....plzzzzzzzzzz...






This is beacuse the C++ Coding you are using is obsolete .

The CUrrent C++ Standard is called "Standard C++"

just to get you started use:
Code:
#include<iostream>
//Any other Inclusions

using namespace std;

int main(){
    //Your code
    return 0;
}
This will work perfectly fine in Visual C++ 2008 Express Edition.
__________________
There are 10 types of people in the world: those who understand binary and those who do not.
Zeeshan Quireshi is offline  
Old 24-06-2008, 07:02 PM   #8 (permalink)
Here Since 2003
 
Indyan's Avatar
 
Join Date: Oct 2007
Location: LOST
Posts: 524
Default Re: Turbo C++ 2.0 Needed

Yeah, we no longer use the .h. You use the prefix c while using c library. You have to specify the namespace (default being std).
Anyway, if you are uncomfortable with that use TC 5.5 compiler with an IDE like Relo. I think TC 5.5 accepts both the new style as well as old style.
__________________
My Blog :: http://www.pallab.net
Twitter :: http://www.twitter.com/indyan
Indyan is offline  
Old 24-06-2008, 07:22 PM   #9 (permalink)
Right Off the Assembly Line
 
Join Date: Jun 2008
Posts: 23
Default Re: Turbo C++ 2.0 Needed

hey wot abt other libraries like math.h.......shd i write

#include<math.h>

or

#include<math>

????

nd wot abt windows.h does visual c++ 2005 express not recognize windows library??
zorrotech2008 is offline  
Old 24-06-2008, 07:32 PM   #10 (permalink)
Here Since 2003
 
Indyan's Avatar
 
Join Date: Oct 2007
Location: LOST
Posts: 524
Default Re: Turbo C++ 2.0 Needed

The rule applies to all libraries. Read my previous post about using C libraries in C++.
I think if you want a good free guide get the ebook version of Bruce Eckels Thinking in C++
__________________
My Blog :: http://www.pallab.net
Twitter :: http://www.twitter.com/indyan

Last edited by Indyan; 24-06-2008 at 08:20 PM.
Indyan is offline  
Old 24-06-2008, 07:47 PM   #11 (permalink)
C# Be Sharp !
 
Zeeshan Quireshi's Avatar
 
Join Date: Jun 2006
Location: Toronto
Posts: 1,805
Default Re: Turbo C++ 2.0 Needed

Quote:
Originally Posted by zorrotech2008 View Post
hey wot abt other libraries like math.h.......shd i write

#include<math.h>

or

#include<math>

????

nd wot abt windows.h does visual c++ 2005 express not recognize windows library??

Windows.h is not a standard c++ library so you HAVE to use the .h .

Also , in standard C++ for non-C++, old libraries you add a 'c' before the name and remove the '.h' .

So 'iostream.h' becomes 'iostream' but 'math.h' becomes 'cmath' as it is an old library that was available in C also .

I recommend Addison Wesley's Accelerated C++ , an awesome book.
__________________
There are 10 types of people in the world: those who understand binary and those who do not.
Zeeshan Quireshi is offline  
Old 24-06-2008, 08:20 PM   #12 (permalink)
Here Since 2003
 
Indyan's Avatar
 
Join Date: Oct 2007
Location: LOST
Posts: 524
Default Re: Turbo C++ 2.0 Needed

I second that. If you can afford it get Accelerated C++. If you cant get Bruce Eckels book which is as good a free book as you would get.
__________________
My Blog :: http://www.pallab.net
Twitter :: http://www.twitter.com/indyan
Indyan is offline  
Old 25-06-2008, 02:16 AM   #13 (permalink)
In The Zone
 
anomit's Avatar
 
Join Date: Mar 2005
Location: Kharagpur
Posts: 252
Default Re: Turbo C++ 2.0 Needed

Save us the trouble. Go here: http://www.cplusplus.com/reference/
__________________
Don\'t SYN me, I'll SYN you. :p
anomit is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
robert lafore's turbo C++ ebook needed...URGENTLY!!! eragon Programming 4 01-06-2007 03:05 PM
Turbo CPP 3.0 help morpheusv6 Software Q&A 13 02-03-2007 03:04 AM
Turbo CPP 3.0 help morpheusv6 Software Q&A 2 26-02-2007 06:47 PM
turbo c santu_29 Software Q&A 3 06-03-2006 10:43 AM
turbo c++ to dev c++ shivi4 Programming 4 31-01-2006 10:27 PM

 
Latest Threads
- by Sujeet
- by clmlbx
- by Sujeet
- by icebags

Advertisement




All times are GMT +5.5. The time now is 11:04 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2