Author |
Message |
joaomello
|
Posted: Mon May 26, 2008 9:37 am Post subject: Visual C++ 2008 |
|
|
Hi all?!
Visual C++ 2008, is good? It use netFrame (programs will need to have netFrame)?
Visual C++ 6, is better?
Has better IDE for C++?
Sorry my stupid questions, but I'm starting at C++
Mello. |
|
|
|
|
![](images/spacer.gif) |
Sponsor Sponsor
![Sponsor Sponsor](templates/subSilver/images/ranks/stars_rank5.gif)
|
|
![](images/spacer.gif) |
syntax_error
![](http://compsci.ca/v3/uploads/user_avatars/196798963948cf16794b6e5.jpg)
|
Posted: Mon May 26, 2008 1:57 pm Post subject: RE:Visual C++ 2008 |
|
|
if your just starting, why pay for an IDE? Also, are you really going to start using netFrames as a beginner lesson? I think not. Get some free one that will meet the basic needs:
|
|
--> debugger
|
--> complier
|
--> syntax highlighter
|
--> [extra] project management
and such your just starting out, my best bet would be use a text editor such as notepad++ and cmd.
that is all you need. |
|
|
|
|
![](images/spacer.gif) |
petree08
|
Posted: Mon May 26, 2008 1:58 pm Post subject: RE:Visual C++ 2008 |
|
|
does any one know where to download a c++ builder? |
|
|
|
|
![](images/spacer.gif) |
apomb
![](http://compsci.ca/v3/uploads/user_avatars/6489609347028a0f2422f.png)
|
Posted: Mon May 26, 2008 2:06 pm Post subject: RE:Visual C++ 2008 |
|
|
here |
|
|
|
|
![](images/spacer.gif) |
wtd
|
Posted: Tue May 27, 2008 10:24 am Post subject: RE:Visual C++ 2008 |
|
|
You'll need to learn the difference between a compiler and an integrated development environment first if you have any hope of becoming a decent programmer. |
|
|
|
|
![](images/spacer.gif) |
petree08
|
Posted: Tue May 27, 2008 10:44 am Post subject: RE:Visual C++ 2008 |
|
|
thanks for the link
+ bits |
|
|
|
|
![](images/spacer.gif) |
joaomello
|
Posted: Tue May 27, 2008 5:03 pm Post subject: RE:Visual C++ 2008 |
|
|
thanks!
I only asked ;p
Builder C++ is good? ;p
xD |
|
|
|
|
![](images/spacer.gif) |
apomb
![](http://compsci.ca/v3/uploads/user_avatars/6489609347028a0f2422f.png)
|
Posted: Tue May 27, 2008 11:30 pm Post subject: RE:Visual C++ 2008 |
|
|
builder C++ is only "good" if you know what it does, and how to use it ![Wink Wink](http://compsci.ca/v3/images/smiles/icon_wink.gif) |
|
|
|
|
![](images/spacer.gif) |
Sponsor Sponsor
![Sponsor Sponsor](templates/subSilver/images/ranks/stars_rank5.gif)
|
|
![](images/spacer.gif) |
btiffin
![](http://compsci.ca/v3/uploads/user_avatars/189169540547b535e50e4a7.jpg)
|
Posted: Wed May 28, 2008 12:38 am Post subject: RE:Visual C++ 2008 |
|
|
If you want a nice free C++ environment, get cygwin at http://www.cygwin.com/ and install the base. If it looks good, then setup.exe install gcc, binutils, gdb and make; plus any others, like ctags.
GNU does make for a pretty nice dev env.
Cheers |
|
|
|
|
![](images/spacer.gif) |
rdrake
![](http://compsci.ca/v3/uploads/user_avatars/113417932472fc6c9cd916.png)
|
Posted: Wed May 28, 2008 1:55 am Post subject: RE:Visual C++ 2008 |
|
|
As suggested above, learning the difference between a compiler and IDE is most important.
Afterwards you can get Visual C++ Express 2008 for free, despite popular belief. |
|
|
|
|
![](images/spacer.gif) |
joaomello
|
Posted: Wed May 28, 2008 8:26 am Post subject: RE:Visual C++ 2008 |
|
|
so... dev c++ will be good for me?!
thanks all! |
|
|
|
|
![](images/spacer.gif) |
apomb
![](http://compsci.ca/v3/uploads/user_avatars/6489609347028a0f2422f.png)
|
Posted: Wed May 28, 2008 10:13 am Post subject: Re: RE:Visual C++ 2008 |
|
|
joaomello @ Wed May 28, 2008 8:26 am wrote: so... dev c++ will be good for me?!
thanks all!
again, only if you know how to use it effectively.
Using an IDE is NOT neccesary when writing C++ programs. In fact, wtd made a very good point that IDEs usually get in the way of new programmers actually learning a language.
so maybe before hesitating to write code because you cant find an IDE you like, try writing code in a text editor with a good syntax highlighter (in Windows, id suggest Notepad++. Linux text editor works perfectly) and then learning how to compile at the command line. its as simple as code: | gcc -o <output file> <inputfile.cpp> | then |
|
|
|
|
![](images/spacer.gif) |
joaomello
|
Posted: Wed May 28, 2008 5:01 pm Post subject: RE:Visual C++ 2008 |
|
|
Understood!
Thanks! |
|
|
|
|
![](images/spacer.gif) |
|