473,406 Members | 2,336 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

What compilier for Windows?

I'm a young programmer, but definitly see my self doing this for the
rest of my life. I'm 15 and into C++. I was wondering if a good
compilier for Windows would be Visual C++ 6.0. I have used Dev C++ and
Turbo C++ (at school =x) and am lucking into a better compilier now
that I have money to spend. Any comments are accepted, even if they
are for a different compilier. Thank you in advance.
Jul 22 '05 #1
16 1499
Si***********@gmail.com (SimonYingling) wrote:
I'm a young programmer, but definitly see my self doing this for the
rest of my life. I'm 15 and into C++. I was wondering if a good
compilier for Windows would be Visual C++ 6.0. I have used Dev C++ and
Turbo C++ (at school =x) and am lucking into a better compilier now
that I have money to spend. Any comments are accepted, even if they
are for a different compilier. Thank you in advance.


If you go for VC++ 6, make sure you get the Professional edition.
When you buy the Standard edition, you install it then discover
that the compiler optimizations have been helpfully disabled by M$.
Jul 22 '05 #2
SimonYingling wrote:
I'm a young programmer, but definitly see my self doing this for the
rest of my life. I'm 15 and into C++. I was wondering if a good
compilier for Windows would be Visual C++ 6.0. I have used Dev C++ and
Turbo C++ (at school =x) and am lucking into a better compilier now
that I have money to spend. Any comments are accepted, even if they
are for a different compilier. Thank you in advance.

The latest version of Visual Studio is 2003.


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #3
chq
Try Visual C++ 2003 Toolkit, it's free. You can obtain it at M$ website.

Jul 22 '05 #4
You can download the Visual C++ compiler for free from:

http://msdn.microsoft.com/visualc/vctoolkit2003/

Microsoft Visual C++ Toolkit 2003 includes the optimizing compiler
included with VC++ 2003.

Deepa
--
http://www.EventHelix.com/EventStudio
EventStudio 2.5 - Generate Sequence Diagrams in PDF and MS-Word

Jul 22 '05 #5
SimonYingling wrote:
I'm a young programmer, but definitly see my self doing this for the
rest of my life. I'm 15 and into C++. I was wondering if a good
compilier for Windows would be Visual C++ 6.0. I have used Dev C++ and
Turbo C++ (at school =x) and am lucking into a better compilier now
that I have money to spend. Any comments are accepted, even if they
are for a different compilier. Thank you in advance.


Just curious: Since Dev-C++ is not a compiler but an IDE, and uses a gcc
Windows port called "Minimalist GNU for Win32" (mingw32), in how far do you
feel the MS compiler would be better?

In fact, my advise would be to NOT start off with a MS compiler when you're
a beginner. You will get used to all those Microsoft specific extensions,
and if you some day want to port your programs you'll have a hard time.

Regards,
Matthias
Jul 22 '05 #6
Matthias Käppler wrote:
Just curious: Since Dev-C++ is not a compiler but an IDE, and uses a gcc
Windows port called "Minimalist GNU for Win32" (mingw32), in how far do you
feel the MS compiler would be better?

In fact, my advise would be to NOT start off with a MS compiler when you're
a beginner. You will get used to all those Microsoft specific extensions,
and if you some day want to port your programs you'll have a hard time.

Dev-C++ is OK to learn ISO C++. Also nowadays, VC++ is not suitable for
beginners to learn C++ but is oriented to experienced developers to
create Windows (.NET) software fast.


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #7
Ioannis Vranos wrote:
Dev-C++ is OK to learn ISO C++.
The point is, Dev-C++ is not a compiler, it's an IDE. Therefore, it doesn't
really have anyting to do with the "learning factor". In fact, it would
actually be best to start off with a bare text editor and a command line
compiler instead of a fully fledged IDE. It only hides those things from
you which you have to learn some day anyway.
Also nowadays, VC++ is not suitable for
beginners to learn C++ but is oriented to experienced developers to
create Windows (.NET) software fast.


My thoughts.

Regards,
Matthias
Jul 22 '05 #8
Ioannis Vranos <iv*@remove.this.grad.com> wrote in message news:<1102271760.415879@athnrd02>...
Matthias Käppler wrote:
Just curious: Since Dev-C++ is not a compiler but an IDE, and uses a gcc
Windows port called "Minimalist GNU for Win32" (mingw32), in how far do you
feel the MS compiler would be better?

In fact, my advise would be to NOT start off with a MS compiler when you're
a beginner. You will get used to all those Microsoft specific extensions,
and if you some day want to port your programs you'll have a hard time.

Dev-C++ is OK to learn ISO C++. Also nowadays, VC++ is not suitable for
beginners to learn C++ but is oriented to experienced developers to
create Windows (.NET) software fast.


I disagree. VC++ (2003 edition) is fine for learning C++. Just create
a Win32 console project and you're up and running. I used VC++ with
Accelerated C++ with no problem. To turn off MS extensions just use
the /Za switch.

--
Martin
Jul 22 '05 #9

"Ioannis Vranos" <iv*@remove.this.grad.com> wrote in message news:1102271760.415879@athnrd02...
Dev-C++ is OK to learn ISO C++. Also nowadays, VC++ is not suitable for
beginners to learn C++ but is oriented to experienced developers to
create Windows (.NET) software fast.


How so? We do most of our development these days with VC++/Qt.
No .Net at all. No MFC. No managed stuff.

The IDE is OK and the dinkumware libs work fine.
You're not forced to do any .Net or managed stuff. The first setting to
change in the IDE is to disable managed extensions. You can then
build console apps or win32 apps.
Jul 22 '05 #10
Duane wrote:
How so? We do most of our development these days with VC++/Qt.
No .Net at all. No MFC. No managed stuff.

I did not say you couldn't do the above. What I said is that it takes
more effort (because it is needed to create a project) to write a "hello
world" program in VC++ 7.1 than in Dev-C++ (where you just create a
..cpp file and hit Compile).
By the way I heard that the latest version of QT supports .NET. :-)
The IDE is OK and the dinkumware libs work fine.
You're not forced to do any .Net or managed stuff. The first setting to
change in the IDE is to disable managed extensions. You can then
build console apps or win32 apps.

I did not say you couldn't do the above.


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #11
chq wrote:
Try Visual C++ 2003 Toolkit, it's free. You can obtain it at M$ website.


It also has no IDE, which may not be what the OP is looking for.

--
Mike Smith
Jul 22 '05 #12
Matthias Käppler wrote:
SimonYingling wrote:

I'm a young programmer, but definitly see my self doing this for the
rest of my life. I'm 15 and into C++. I was wondering if a good
compilier for Windows would be Visual C++ 6.0. I have used Dev C++ and
Turbo C++ (at school =x) and am lucking into a better compilier now
that I have money to spend. Any comments are accepted, even if they
are for a different compilier. Thank you in advance.

Just curious: Since Dev-C++ is not a compiler but an IDE, and uses a gcc
Windows port called "Minimalist GNU for Win32" (mingw32), in how far do you
feel the MS compiler would be better?


Given that the guy is a beginner, he may not understand the difference
between a compiler and an IDE. Maybe it would be better to explain the
difference than to browbeat the poor guy?

--
Mike Smith
Jul 22 '05 #13

"Ioannis Vranos" <iv*@remove.this.grad.com> wrote in message news:1102357367.19255@athnrd02...
I did not say you couldn't do the above. What I said is that it takes
more effort (because it is needed to create a project) to write a "hello
world" program in VC++ 7.1 than in Dev-C++ (where you just create a
.cpp file and hit Compile).
I'd have to agree with that.

By the way I heard that the latest version of QT supports .NET. :-)


We're using 3.3 and it doesn't but I think the 4.0 will. As I say, we don't
currently use .NET stuff so I haven't paid much attention to it yet.
Jul 22 '05 #14
Mike Smith wrote:
Given that the guy is a beginner, he may not understand the difference
between a compiler and an IDE. Maybe it would be better to explain the
difference than to browbeat the poor guy?


I'm not browbeating him. I'm just wondering why he seems to take it as given
that Borland and MS are better than anything else out there. I just wanted
to *subtly* tell him that the big ones are not necessarily the best ones.

(to original poster):
An IDE (Integrated Development Environment) is basically a set of tools
which form a complete programming environment for a given language. Like
Microsoft's Visual Studio. The compiler is just the backend which
translates a given language to another one (usually to machine code or some
form of intermediate language).

Regards,
Matthias
Jul 22 '05 #15
Duane wrote:
We're using 3.3 and it doesn't but I think the 4.0 will. As I say, we don't
currently use .NET stuff so I haven't paid much attention to it yet.

And by the way, you do not need to disable managed extensions to compile
a Win32, ISO C++ or other unmanaged code in VC++.


--
Ioannis Vranos

http://www23.brinkster.com/noicys
Jul 22 '05 #16

"Ioannis Vranos" <iv*@remove.this.grad.com> wrote in message news:1102364403.480666@athnrd02...
And by the way, you do not need to disable managed extensions to compile
a Win32, ISO C++ or other unmanaged code in VC++.


Not if you don't mind a simple "hello world" program taking
15 seconds to complete...
Jul 22 '05 #17

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

Similar topics

50
by: Jerry Sievers | last post by:
<venting> Fellow coders; I just get off the phone today with some clueless headhunter and after listing for her (very proudly I might add) my OS and dev tools platforms of choice; ...
21
by: j_mckitrick | last post by:
Just thought I'd play devil's advocate... I tried wxPython briefly, and it had some nice features. It has a huge list of dependencies. I don't like the fonts (but I'd love to know how to get...
125
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from...
5
by: google account | last post by:
Hiya. My CEO wants me to think about the direction the company's product should take. He has a bunch of guys offshore that develop with .NET, and he is keen to use them to build our product...
3
by: Paul Auleciems | last post by:
Hi: I'm having trouble using an Object which is created based on the following: Public CarDetail () as Car Where the CLASS "Car" is defined as: Public Class Car
121
by: typingcat | last post by:
First of all, I'm an Asian and I need to input Japanese, Korean and so on. I've tried many PHP IDEs today, but almost non of them supported Unicode (UTF-8) file. I've found that the only Unicode...
9
by: Rajat Tandon | last post by:
Hello there, I am relatively new to the newsgroups and C#. I have never been disappointed with the groups and always got the prompt replies to my queries.This is yet another strange issue, I am...
21
by: StriderBob | last post by:
Situation : FormX is mdi child form containing 2 ListViews ListView1 contains a list of table names and 4 sub items with data about each table. ListView2 contains a list of the columns on each...
0
by: okonita | last post by:
Hi all, I am having a DB2 connectivity problem that I hope someone can help me resolve. I need this to test Replication and such other things. What am I doing wrong here? Any help that I can get...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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...
0
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...
0
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...
0
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,...

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.