473,387 Members | 1,812 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,387 software developers and data experts.

New to C++, which IDE?

Pat
I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking one of
the free C++ IDEs would probably do. The three I'm considering are:

1. Visual Studio C++ Express

2. Bloodshed Dev-C++

3. Code::Blocks

Any opinions on which of these would be best for a newbie (i.e. easiest
to use)? I'll be running this on an HP Workstation (dual Opteron 280s)
running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I was
thinking of picking up a copy of "C++ Primer Plus" by Stephen Prata.
It's gotten pretty good reviews on Amazon, and looks like it would be a
good reference for beginners. Any other suggestions though are welcomed.

Thanks for any feedback on these. I appreciate it.

Pat
Apr 7 '08 #1
21 1737
On Apr 7, 11:39*am, Pat <pkelecy@_REMOVETHIS_gmail.comwrote:

<snip>

Can't recommend an IDE because I don't use one, but the FAQ below can
point you to some book references.

http://www.parashift.com/c++-faq-lit...e.html#faq-6.7
Apr 7 '08 #2
Pat wrote:
I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking
one of the free C++ IDEs would probably do. The three I'm
considering are:
1. Visual Studio C++ Express

2. Bloodshed Dev-C++

3. Code::Blocks

Any opinions on which of these would be best for a newbie (i.e.
easiest to use)? I'll be running this on an HP Workstation (dual
Opteron 280s) running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I
was thinking of picking up a copy of "C++ Primer Plus" by Stephen
Prata. It's gotten pretty good reviews on Amazon, and looks like it
would be a good reference for beginners. Any other suggestions
though are welcomed.

If you are developing for Windows, Visual Studio is the native
environment and already contains the compiler. A natural choice, if
you don't have any other very specific requirements.
Bo Persson
Apr 7 '08 #3
On Apr 7, 11:39 am, Pat <pkelecy@_REMOVETHIS_gmail.comwrote:
I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking one of
the free C++ IDEs would probably do. The three I'm considering are:

1. Visual Studio C++ Express

2. Bloodshed Dev-C++

3. Code::Blocks

Any opinions on which of these would be best for a newbie (i.e. easiest
to use)? I'll be running this on an HP Workstation (dual Opteron 280s)
running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I was
thinking of picking up a copy of "C++ Primer Plus" by Stephen Prata.
It's gotten pretty good reviews on Amazon, and looks like it would be a
good reference for beginners. Any other suggestions though are welcomed.

Thanks for any feedback on these. I appreciate it.

Pat
A search on this group and the word "IDE" should give you all the
answers you could ever hope for. The question has been asked a zillion
times :)
Apr 7 '08 #4
Pat
lb*******@yahoo.com wrote:
On Apr 7, 11:39 am, Pat <pkelecy@_REMOVETHIS_gmail.comwrote:

<snip>

Can't recommend an IDE because I don't use one, but the FAQ below can
point you to some book references.

http://www.parashift.com/c++-faq-lit...e.html#faq-6.7

Thanks. Looks like there's a lot of useful information on that website.
I'll definitely check it out.

So does it really take 6 months to learn C++?
Apr 7 '08 #5
On Apr 7, 3:08*pm, Pat <pkelecy@_REMOVETHIS_gmail.comwrote:
>
So does it really take 6 months to learn C++?
Depends - I've been using it for years and am still learning things
about it, and there are features I've never used. The process of
learning C++ (or anything) is a continuum. I don't know where Cline/
Lomow/Girou came up with the "6-12 months" number, which seems rather
arbitrary to me. I would guess it depends on how new you are to
programming, OO, how fast you learn, etc.

Keep in mind you can be productive with and write good C++ programs in
a lot shorter time than that, even if you don't know how to use
everything.

Apr 7 '08 #6
Pat
Bo Persson wrote:
Pat wrote:
>I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking
one of the free C++ IDEs would probably do. The three I'm
considering are:
1. Visual Studio C++ Express

2. Bloodshed Dev-C++

3. Code::Blocks

Any opinions on which of these would be best for a newbie (i.e.
easiest to use)? I'll be running this on an HP Workstation (dual
Opteron 280s) running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I
was thinking of picking up a copy of "C++ Primer Plus" by Stephen
Prata. It's gotten pretty good reviews on Amazon, and looks like it
would be a good reference for beginners. Any other suggestions
though are welcomed.


If you are developing for Windows, Visual Studio is the native
environment and already contains the compiler. A natural choice, if
you don't have any other very specific requirements.
Bo Persson

Thanks Bo. That's my inclination also. The main drawback (I think) is
that it doesn't support 64-bit platforms. But XP x64 will run 32-bit
code, so that's not a major issue.
Apr 7 '08 #7
Pat
Christopher wrote:
On Apr 7, 11:39 am, Pat <pkelecy@_REMOVETHIS_gmail.comwrote:
>I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking one of
the free C++ IDEs would probably do. The three I'm considering are:

1. Visual Studio C++ Express

2. Bloodshed Dev-C++

3. Code::Blocks

Any opinions on which of these would be best for a newbie (i.e. easiest
to use)? I'll be running this on an HP Workstation (dual Opteron 280s)
running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I was
thinking of picking up a copy of "C++ Primer Plus" by Stephen Prata.
It's gotten pretty good reviews on Amazon, and looks like it would be a
good reference for beginners. Any other suggestions though are welcomed.

Thanks for any feedback on these. I appreciate it.

Pat

A search on this group and the word "IDE" should give you all the
answers you could ever hope for. The question has been asked a zillion
times :)

Will do. Thanks!
Apr 7 '08 #8
Pat wrote:
lb*******@yahoo.com wrote:
>On Apr 7, 11:39 am, Pat <pkelecy@_REMOVETHIS_gmail.comwrote:

<snip>

Can't recommend an IDE because I don't use one, but the FAQ below can
point you to some book references.

http://www.parashift.com/c++-faq-lit...e.html#faq-6.7


Thanks. Looks like there's a lot of useful information on that website.
I'll definitely check it out.

So does it really take 6 months to learn C++?

If you want to learn some simple stuff to make GUI applications, then it
will not take long. If you want to learn the entire language you will
need years.
Apr 7 '08 #9
Pat
As I mentioned, I really only need to learn enough to create these C++
modules used by the commercial FEA code I use. I think these modules
are pretty basic (mostly calls to other functions I expect) so I'm
hoping I can come up to speed in a couple of weeks. I'll try to post
one though to get some opinions on that.

I do have prior programming experience (BASIC, FORTRAN, and most
recently Matlab) but not with any object oriented language. So it may
be tougher going than I expect. I hope not (mainly because I'm pressed
for time) but I'm looking forward to the challenge.

Thanks again for all the responses on this. I appreciate it.
Apr 8 '08 #10
On Apr 7, 10:39*am, Pat <pkelecy@_REMOVETHIS_gmail.comwrote:
I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). *I think the
programming needs for this are pretty basic, and so was thinking one of
the free C++ IDEs would probably do. *The three I'm considering are:

1. Visual Studio C++ Express

2. Bloodshed Dev-C++

3. Code::Blocks

Any opinions on which of these would be best for a newbie (i.e. easiest
to use)? *I'll be running this on an HP Workstation (dual Opteron 280s)
running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I was
thinking of picking up a copy of "C++ Primer Plus" by Stephen Prata.
It's gotten pretty good reviews on Amazon, and looks like it would be a
good reference for beginners. Any other suggestions though are welcomed.

Thanks for any feedback on these. I appreciate it.

Pat
I use DEV-C++, it kinda bugs me, so I wouldn't recommend it, but part
of it may be because My computer sucks, so anyway, I hope it gets
better.
Apr 8 '08 #11
Pat wrote:
1. Visual Studio C++ Express

2. Bloodshed Dev-C++

3. Code::Blocks
Under Windows, I possibly would use Visual Studio, on Linux I use
Code::Blocks because I simply like it. It has some nice features. And I did
some small changes to it, so that it fits my needs better, that's what you
can't do with Visual Studio.

lg,
Michael
Apr 8 '08 #12
Pat wrote:
So does it really take 6 months to learn C++?
http://norvig.com/21-days.html
Apr 8 '08 #13
On 2008-04-07 22:16, Pat wrote:
Bo Persson wrote:
>Pat wrote:
>>I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking
one of the free C++ IDEs would probably do. The three I'm
considering are:
1. Visual Studio C++ Express

2. Bloodshed Dev-C++

3. Code::Blocks

Any opinions on which of these would be best for a newbie (i.e.
easiest to use)? I'll be running this on an HP Workstation (dual
Opteron 280s) running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I
was thinking of picking up a copy of "C++ Primer Plus" by Stephen
Prata. It's gotten pretty good reviews on Amazon, and looks like it
would be a good reference for beginners. Any other suggestions
though are welcomed.


If you are developing for Windows, Visual Studio is the native
environment and already contains the compiler. A natural choice, if
you don't have any other very specific requirements.
Bo Persson


Thanks Bo. That's my inclination also. The main drawback (I think) is
that it doesn't support 64-bit platforms. But XP x64 will run 32-bit
code, so that's not a major issue.
You can download the Windows SDK and use the compiler that comes with
it. See http://msdn2.microsoft.com/en-us/library/9yb4317s.aspx

--
Erik Wikström
Apr 8 '08 #14
Visual Studio

On Apr 7, 12:39 pm, Pat <pkelecy@_REMOVETHIS_gmail.comwrote:
I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking one of
the free C++ IDEs would probably do. The three I'm considering are:

1. Visual Studio C++ Express

2. Bloodshed Dev-C++

3. Code::Blocks

Any opinions on which of these would be best for a newbie (i.e. easiest
to use)? I'll be running this on an HP Workstation (dual Opteron 280s)
running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I was
thinking of picking up a copy of "C++ Primer Plus" by Stephen Prata.
It's gotten pretty good reviews on Amazon, and looks like it would be a
good reference for beginners. Any other suggestions though are welcomed.

Thanks for any feedback on these. I appreciate it.

Pat
Apr 8 '08 #15
Pat
Erik Wikström wrote:
On 2008-04-07 22:16, Pat wrote:
>Bo Persson wrote:
>>Pat wrote:
I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking
one of the free C++ IDEs would probably do. The three I'm
considering are:
1. Visual Studio C++ Express

2. Bloodshed Dev-C++

3. Code::Blocks

Any opinions on which of these would be best for a newbie (i.e.
easiest to use)? I'll be running this on an HP Workstation (dual
Opteron 280s) running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I
was thinking of picking up a copy of "C++ Primer Plus" by Stephen
Prata. It's gotten pretty good reviews on Amazon, and looks like it
would be a good reference for beginners. Any other suggestions
though are welcomed.

If you are developing for Windows, Visual Studio is the native
environment and already contains the compiler. A natural choice, if
you don't have any other very specific requirements.
Bo Persson

Thanks Bo. That's my inclination also. The main drawback (I think) is
that it doesn't support 64-bit platforms. But XP x64 will run 32-bit
code, so that's not a major issue.

You can download the Windows SDK and use the compiler that comes with
it. See http://msdn2.microsoft.com/en-us/library/9yb4317s.aspx
So you can choose which compiler to use in Visual Studio? Nice. Thanks
for link!
Apr 9 '08 #16
Pat wrote:
I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking one of
the free C++ IDEs would probably do. The three I'm considering are:

1. Visual Studio C++ Express

I suggest the above. It comes from a big company and it completely
supports ISO C++98 (ISO/IEC 14882:1998) and ISO C95 (ISO/IEC 9899:1995)
standards.
2. Bloodshed Dev-C++

MINGW compiler is broken regarding long double support.

>
3. Code::Blocks

I suppose you will use MINGW with this too.

>
Any opinions on which of these would be best for a newbie (i.e. easiest
to use)? I'll be running this on an HP Workstation (dual Opteron 280s)
running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I was
thinking of picking up a copy of "C++ Primer Plus" by Stephen Prata.
It's gotten pretty good reviews on Amazon, and looks like it would be a
good reference for beginners. Any other suggestions though are welcomed.

"Accelerated C++" by Andrew Koenig, Barbara Moo has a very good
reputation for a newcomer book.
Also check http://www.accu.org at the Book reviews section.

>
Thanks for any feedback on these. I appreciate it.

Pat

Ioannis (John)
Apr 9 '08 #17
On 2008-04-09 18:04, Ioannis Vranos wrote:
Pat wrote:
>I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking one of
the free C++ IDEs would probably do. The three I'm considering are:

1. Visual Studio C++ Express


I suggest the above. It comes from a big company and it completely
supports ISO C++98 (ISO/IEC 14882:1998) and ISO C95 (ISO/IEC 9899:1995)
standards.
No. While the compiler is pretty standard conformant it does not support
at least one feature in C++98 (export templates).

--
Erik Wikström
Apr 9 '08 #18
Pat
asterisc wrote:
>
A good alternative is using Eclipse + CDT!

Would this be better than Visual Studio for the newbie? If so, why?
Apr 9 '08 #19
Pat
Ioannis Vranos wrote:
Pat wrote:
>I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking one of
the free C++ IDEs would probably do. The three I'm considering are:

1. Visual Studio C++ Express


I suggest the above. It comes from a big company and it completely
supports ISO C++98 (ISO/IEC 14882:1998) and ISO C95 (ISO/IEC 9899:1995)
standards.
Thanks. That's my inclination also.

>
>2. Bloodshed Dev-C++


MINGW compiler is broken regarding long double support.

>3. Code::Blocks


I suppose you will use MINGW with this too.

>Any opinions on which of these would be best for a newbie (i.e. easiest
to use)? I'll be running this on an HP Workstation (dual Opteron 280s)
running Windows XP Pro x64.

Along the same lines, since I'm new to C++ (but not programming) I was
thinking of picking up a copy of "C++ Primer Plus" by Stephen Prata.
It's gotten pretty good reviews on Amazon, and looks like it would be a
good reference for beginners. Any other suggestions though are welcomed.


"Accelerated C++" by Andrew Koenig, Barbara Moo has a very good
reputation for a newcomer book.
Also check http://www.accu.org at the Book reviews section.
Thanks again. I'll check those out.

Pat
Apr 9 '08 #20
Erik Wikström wrote:
On 2008-04-09 18:04, Ioannis Vranos wrote:
>Pat wrote:
>>I am going to need to develop some C++ modules for use in another
application (commercial FEA code produced by Ansoft). I think the
programming needs for this are pretty basic, and so was thinking one of
the free C++ IDEs would probably do. The three I'm considering are:

1. Visual Studio C++ Express

I suggest the above. It comes from a big company and it completely
supports ISO C++98 (ISO/IEC 14882:1998) and ISO C95 (ISO/IEC 9899:1995)
standards.

No. While the compiler is pretty standard conformant it does not support
at least one feature in C++98 (export templates).

Yes, you are right, it supports C++98 except export templates. MINGW/GCC
also doesn't support them.

Apr 9 '08 #21
In article <ft***********@ulysses.noc.ntua.gr>,
iv*****@nospam.no.spamfreemail.gr says...
Erik Wikström wrote:
On 2008-04-09 18:04, Ioannis Vranos wrote:
[ ... ]
I suggest the above. It comes from a big company and it completely
supports ISO C++98 (ISO/IEC 14882:1998) and ISO C95 (ISO/IEC 9899:1995)
standards.
No. While the compiler is pretty standard conformant it does not support
at least one feature in C++98 (export templates).

Yes, you are right, it supports C++98 except export templates. MINGW/GCC
also doesn't support them.
It's missing a number of other features as well, such as exception
specifications (it parses but ignores them).

--
Later,
Jerry.

The universe is a figment of its own imagination.
Jun 27 '08 #22

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

Similar topics

3
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL)...
2
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues...
3
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which...
0
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. ...
1
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the...
4
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the...
1
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url ...
2
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value...
3
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
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,...
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...

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.