473,625 Members | 2,690 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

What is Borland C++?

Hi
At my college some IT students were giving away free older computer books. I
got a book called Borland C++ a programmers guide.

So I was really just wondering what this Borland C++ is? I know C++ is a
programming language, but Borland? And is this book, thats from 1992 still
valid, or is it outdated?

I hope someone can answer me, or point me to the right place.

Thanks
-
Jul 23 '05 #1
7 3572
Juggernaut wrote:
At my college some IT students were giving away free older computer books. I
got a book called Borland C++ a programmers guide.

So I was really just wondering what this Borland C++ is?
A product. Visit http://www.borland.com
I know C++ is a
programming language, but Borland?
It's a company that makes a compiler.
And is this book, thats from 1992 still
valid, or is it outdated?


Most likely outdated.

V
Jul 23 '05 #2
Juggernaut wrote:
Hi
At my college some IT students were giving away free older computer books. I got a book called Borland C++ a programmers guide.


by Al Stevens?

Jul 23 '05 #3

"Juggernaut " <ju************ @hotmail.com> wrote in message
news:Ly******** *********@news0 00.worldonline. dk...
Hi
At my college some IT students were giving away free older computer books.
I
got a book called Borland C++ a programmers guide.

So I was really just wondering what this Borland C++ is?
It's the Borland Corporation's implementation of the C++
language (for PC platforms). IOW Borland is a competitor
of Microsoft and other companies.
I know C++ is a
programming language,
Yes.
but Borland?
A software vendor.
And is this book, thats from 1992 still
valid, or is it outdated?
The C++ language was first standardized in 1998, and the
standard was revised in 2003, so if you're asking about
standard C++, yes it's quite out of date.

But note that Borland has been keeping up with developments
and does provide up-to-date C++ implementations (and there
are also up-to-date books about them).
I hope someone can answer me, or point me to the right place.


I think these links will help:
FAQ for comp.lang.c++ :
http://www.parashift.com/c++-faq-lite/

FAQ for alt.comp.lang.l earn.c-c++ (the C and C++ 'learners group'):
http://ma.rtij.nl/acllc-c++.FAQ.html

Info about Borland Corp. and its products:
www.borland.com

-Mike
Jul 23 '05 #4
> It's the Borland Corporation's implementation of the C++
language (for PC platforms). IOW Borland is a competitor
of Microsoft and other companies.

but Borland?


A software vendor.


So basically this book is a book about programming in c++ using the Borland
C++ compiler?

But its outdated? Ok, well it was free so I didnt loose any money on it =P

Thanks for the info.


Jul 23 '05 #5

"Juggernaut " <ju************ @hotmail.com> wrote in message
news:8I******** *********@news0 00.worldonline. dk...
It's the Borland Corporation's implementation of the C++
language (for PC platforms). IOW Borland is a competitor
of Microsoft and other companies.

>but Borland?


A software vendor.


So basically this book is a book about programming in c++ using the
Borland
C++ compiler?

But its outdated? Ok, well it was free so I didnt loose any money on it =P


Yes, it's outdated, and really only useful if you have one of their old
compilers and want to know how to write software that compiles with it. (It
most likely says which Borland compiler version it refers to.) It's not
going to help you program in C++ at all, if you're going to compile with any
modern compiler... not even theirs.

-Howard

Jul 23 '05 #6

"Juggernaut " <ju************ @hotmail.com> wrote in message
news:8I******** *********@news0 00.worldonline. dk...
It's the Borland Corporation's implementation of the C++
language (for PC platforms). IOW Borland is a competitor
of Microsoft and other companies.
>but Borland?


A software vendor.


So basically this book is a book about programming in c++ using the
Borland
C++ compiler?


Yes, but about a compiler written in or before 1992. It most likely
contains information about 'extensions' supplied by that compiler which
are useful with the target platform. There's nothing wrong with using
them, but one should be aware that they're not standard, and can't expect
them to exist on other implementations ; or if other implementations
provide function(s) with the same name(s), they won't necessarily
have the same behavior.

The form of C++ dicussed in this newsgroup is "ISO Standard C++"
which is by definition platform-neutral. (IOW it contains a minimum
set of features for working with those computer components that may
be reasonably expected to exist on a broad range of platforms. E.g.
it has flow control statements, mechanisms for defining data structures,
its standard library has support for file handling and miscellaneous
algorithms; but it does not directly support things like graphics,
networking, threading, etc. (but those features can be easily included
in an application by using third party libraries and/or implementation
extensions.)
But its outdated?
If you use it to work with whatever version of Borland C++
it was written for, then no it's not 'outdated'. But with
regard to the ISO standard for C++ or any later versions of
Borland's compilers (standard or not), yes, it's outdated.
Ok, well it was free so I didnt loose any money on it


Thank goodness for that. :-) BTW you can read peer reviews of
books on C++ (and C, and a few other topics), at www.accu.org
I suggest it might be worthwhile to use them as a 'filter'
before you do spend any money. Of course which book(s) are
best for you will depend upon your current level of knowledge
and your specific learning goals.

-Mike
Jul 23 '05 #7
Juggernaut wrote:
So basically this book is a book about programming in c++ using the Borland
C++ compiler?

But its outdated? Ok, well it was free so I didnt loose any money on it =P

Thanks for the info.

The latest complete Borland C++ development environment is Borland C++ Builder 6. Check
google to find books for it.
Also Borland provides the C++ compiler for free (command line). Check their web site if
you want to download it.

Also it provides a trial edition of C++ Builder 6 Enterprise Edition to download it for
free. You can download it to see how it looks like.

http://www.borland.com/products/down..._cbuilder.html

--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 23 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

56
3723
by: Xah Lee | last post by:
What are OOP's Jargons and Complexities Xah Lee, 20050128 The Rise of Classes, Methods, Objects In computer languages, often a function definition looks like this: subroutine f (x1, x2, ...) { variables ... do this or that }
0
3316
by: Heikki Tuuri | last post by:
Hi! Many people have complained over years that Borland's dbExpress driver does not work with MySQL and transactions, because it disconnects from mysqld after each SQL statement. The postings below suggests that this problem might now be fixed by Borland. Best regards, Heikki Tuuri
11
2122
by: TGF | last post by:
I am wondering if it is feasible to use .NET for applications that have to be very fast. We have a few applications that are blazingly fast, written in Borland C++ using Borland C++ Builder. We would like to port over to ..NET, but some of the test models we have developed are MUCH, MUCH slower than it's Borland counterpart. Is this due to the .NET Framework and the JIT? Or is it something we should be looking for in the project...
17
4694
by: Ziggi | last post by:
Hi. I want to get a C++ IDE, but I dont know whether to go for Bill Gate's solution or Borland's. Could any kind folks detail the relative strength and weaknesses of both, and also tell me which you yourselves prefer. Thanks in advance. Ziggi
15
3759
by: Chris | last post by:
I am just beginning programming again and need a bit of advice. I have both Visual C++ 6.0 Standard Edition and Borland C++ Builder 6. Of these two which do you consider the best for programming windows programs (not the DOS style program). I have had a quick look at both of these and Borland seems to have a lot more components (Buttons, Forms etc) than Microsoft Visual C++. Does Visual C++ have these components easily accesable. Chris.
17
1790
by: ilPostino | last post by:
Hey, My experience with c++ is limited to ATL and for the past 3 years it's just been c#. I need to write a UI intensive application that is just too slow in managed code. So I'm re-doing it in unmanaged c++, what should I use in vc++ 7, ATL, MFC or Win32? thanks Craig
11
5622
by: anon | last post by:
Borland's BGI graphics library (GRAPHICS.LIB, GRAPHICS.TPU) has a bug which can cause the floodfill routine to crash. It's most likely to occur in C applications when compiled using the small data (64K) memory models. To see the bug in action, compile the C demo program supplied below. Make sure the target is set for DOS and the small or medium memory model is used. For floodfill to crash requires two conditions be met: - the fill is...
1
3769
by: dhruba.bandopadhyay | last post by:
Am wondering whether Borland C++ 4.5 or Borland Turbo C++ 1.01 supported C++ templates. If not, which other future version of BC++ or TC++ did? If BC++ 4.5 or TC++ 1.01 does support it, how much of the C++ language does it support.
184
6997
by: jim | last post by:
In a thread about wrapping .Net applications using Thinstall and Xenocode, it was pointed out that there may be better programming languages/IDEs to use for the purpose of creating standalone, single executable apps. My goal is to create desktop applications for use on Windows XP+ OSs that are distributed as single executables that do not require traditional install packages to run. I would like to use a drag and drop UI development...
0
8688
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8635
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8352
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8494
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7178
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6115
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4085
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4188
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2614
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.