Computer Science Canada

Visual C++ 2008

Author:  joaomello [ 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++ Rolling Eyes

Mello.

Author:  syntax_error [ 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.

Author:  petree08 [ Mon May 26, 2008 1:58 pm ]
Post subject:  RE:Visual C++ 2008

does any one know where to download a c++ builder?

Author:  apomb [ Mon May 26, 2008 2:06 pm ]
Post subject:  RE:Visual C++ 2008

here

Author:  wtd [ 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.

Author:  petree08 [ Tue May 27, 2008 10:44 am ]
Post subject:  RE:Visual C++ 2008

thanks for the link
+ bits

Author:  joaomello [ Tue May 27, 2008 5:03 pm ]
Post subject:  RE:Visual C++ 2008

thanks!
I only asked ;p
Builder C++ is good? ;p
xD

Author:  apomb [ 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

Author:  btiffin [ 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

Author:  rdrake [ 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.

Author:  joaomello [ Wed May 28, 2008 8:26 am ]
Post subject:  RE:Visual C++ 2008

so... dev c++ will be good for me?!

thanks all!

Author:  apomb [ 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
code:
./<output file>

Author:  joaomello [ Wed May 28, 2008 5:01 pm ]
Post subject:  RE:Visual C++ 2008

Understood!
Thanks!


: