473,725 Members | 2,127 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Borland C and Microsoft Visual C

MS
Hi,

I'm trying to find out whether Borland C 4.5 and MVC still exist. I'm
doing so as I have code that was compiled by them originally and
wnated to recompile it using that code to do some testing.

I've looked online and it seems like there's only the C++ version of
them around. Could I just use the C++ compiler to compile my C
stuff??

Thanking you,
MS
Nov 14 '05 #1
3 2004

"MS" <mi**********@h otmail.com> wrote
I've looked online and it seems like there's only the C++ version of
them around. Could I just use the C++ compiler to compile my C
stuff??

C++ always come with a packaged C compiler. Usually you just give your C
files a .c extension and they will be compiled as C. There are a few minor
incompatibilite s which mean that C cannot be compiled as C++ unless you
deliberately write it to be compilable under both languages.
Nov 14 '05 #2
On 17 Oct 2004 16:57:36 -0700, mi**********@ho tmail.com (MS) wrote in
comp.lang.c:
Hi,

I'm trying to find out whether Borland C 4.5 and MVC still exist. I'm
doing so as I have code that was compiled by them originally and
wnated to recompile it using that code to do some testing.

I've looked online and it seems like there's only the C++ version of
them around. Could I just use the C++ compiler to compile my C
stuff??

Thanking you,
MS


Note that questions like this about specific compilers are really
off-topic here, as it has nothing to do with the language itself.

But there was never either a Borland C 4.5 or a Microsoft Visual C.
All of Borland's 'Borland' compilers, as opposed to their 'Turbo'
compilers, later than 2.0 were called Borland C++, and 4.5 is long
obsolete. Microsoft never shipped a compiler called "Visual C", all
of them with Visual in the name were Visual C++, and there are version
numbers from 1.0 through 8.0 which is currently in beta.

All Borland and Microsoft C++ compilers include a C compiler as well.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.l earn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Nov 14 '05 #3
In article <6s************ *************** *****@4ax.com>, Jack Klein
<ja*******@spam cop.net> writes
On 17 Oct 2004 16:57:36 -0700, mi**********@ho tmail.com (MS) wrote in
comp.lang.c:
Hi,

I'm trying to find out whether Borland C 4.5 and MVC still exist. I'm
doing so as I have code that was compiled by them originally and
wnated to recompile it using that code to do some testing.

I've looked online and it seems like there's only the C++ version of
them around. Could I just use the C++ compiler to compile my C
stuff??

Thanking you,
MS


Note that questions like this about specific compilers are really
off-topic here, as it has nothing to do with the language itself.

But there was never either a Borland C 4.5 or a Microsoft Visual C.
All of Borland's 'Borland' compilers, as opposed to their 'Turbo'
compilers, later than 2.0 were called Borland C++, and 4.5 is long
obsolete.

BC++ V5.5 IS available as a FREE download from Borland. Only the
command line versions but it is still there.
/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
\/\/\/\/\ Chris Hills Staffs England /\/\/\/\/\
/\/\/ ch***@phaedsys. org www.phaedsys.org \/\/
\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
Nov 14 '05 #4

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

Similar topics

5
2769
by: Steven O. | last post by:
First, sorry if by some chance I am not posting to the correct newsgroups, these seemed to be the most applicable to my question (see disclaimer at end of post for further comments....). Started with the Borland web site, and it didn't answer my questions, so I hope someone here will be kind enough to reply. I took a few courses on C++ using Microsoft Visual C++, and then taught myself MFC for GUI design -- an exercise akin to using...
0
2964
by: Kenneth Gomez | last post by:
Hello, I have tried many avenues (web search, borland website, libxml website) before deciding to post here. I'm trying to install libxml2 on windows ME to work with my Borland C++ 5 Compiler (command line). Read through the installation guides from xmlsoft.org.
1
1736
by: Flame Watcher | last post by:
I have a project that uses VCL with Tee chart support and other external controls. There are quite a few persnoal reasons for converting this over to visual.net and would like to know if it is possible. Can the Borland librarys be used with visual.net or is there a way that I can use the Microsoft librarys? Thank you Dave
17
4699
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
3769
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.
4
1789
by: Mufe | last post by:
Visual c++ compiler survives this: #define THE_NULL -32767 struct typePair { int v2,v3; }; struct typeTriple { int v1; typePair p; }; typePair EMPTY_PAIR = {THE_NULL,THE_NULL}; typeTriple sv = {THE_NULL, EMPTY_PAIR };
0
3103
by: Xproblem | last post by:
FTP Client Engine for C/C++ 2.4 Screenshot - Soft.comFTP Client Engine for C/C++ 2.4. ... System Requirements: Windows C/C++ compiler - Microsoft operating system: Windows 95, Windows 98, Windows ME, ... www.soft30.com/screen-70-11625.htm - 31k - Cached - Similar pages C++ Server Pages 1.6 - Soft.comC++ Server Pages (CSP) allows developers to build Dynamic Web Pages and Web ... Existing C++ projects can be ported to the Web by simply...
20
8149
by: ritchie | last post by:
Hi, I am trying to clear the screen in my program. I am loking for something that will work on all compilers, especially Borland & MS Visual Studio 6. On Visual studio I used 'system("cls");' and this works fine but this won't work for Borland. On Borland I used 'clrscr() ' function and it worked ok, but not for Visual Studio.
17
7247
by: Fabry | last post by:
Hi All, I'm new of this group and I do not know if this is the correct group for my question. I have a DLL with its export library (.lib) wrote in Borland C++ 6. In borland everything is OK and I am able to include the lib and use the class that i have exported creating an instance with new etc... I would like to export this class in microsoft VC++ using the same .lib file. Obviously it doesn' t work.
0
8888
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8752
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9401
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
9113
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
8097
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
6702
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
6011
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
2635
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2157
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.