Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > what is the C++ Standard and compiler for Windows XP Users?

Reply
Thread Tools

what is the C++ Standard and compiler for Windows XP Users?

 
 
pachanga
Guest
Posts: n/a
 
      12-19-2004
I have Visual C++ .NET and C#.NET, but, I wanted to help out the C++
linux groups creating Windows Games, and mostly internet applications.
Where can I can download the right tool or notepad and compiler that
everyone usally uses in places like SourceForge ? is Visual C++ .NET
identical to C++ standard?

 
Reply With Quote
 
 
 
 
Raymond Martineau
Guest
Posts: n/a
 
      12-19-2004
On 18 Dec 2004 18:15:47 -0800, "pachanga" <> wrote:

>I have Visual C++ .NET and C#.NET, but, I wanted to help out the C++
>linux groups creating Windows Games, and mostly internet applications.


http://www.slack.net/~shiva/welcome.txt

>Where can I can download the right tool or notepad and compiler that
>everyone usally uses in places like SourceForge ? is Visual C++ .NET
>identical to C++ standard?


Visual C++ is a compiler for the C++ language. As long as the code in
question does not require third-party libraries or non-standard extensions,
it will compile under any operating system.

The C++ standard is there to ensure that code can be used on the different
C++ compilers.
 
Reply With Quote
 
 
 
 
EventHelix.com
Guest
Posts: n/a
 
      12-19-2004
Unlike earlier versions of Visual Studio, Visual Studio .NET 2003 C++
compiler
is very good at standard compliance.

You should watch out for managed extensions etc. when compiling. I
believe
there is a compiler switch setting that will allow only ANSI compliant
code.

Deepa
--
http://www.EventHelix.com/EventStudio
EventStudio 2.5 - Generate sequence diagrams from plain text input

 
Reply With Quote
 
Ioannis Vranos
Guest
Posts: n/a
 
      12-19-2004
pachanga wrote:

> I have Visual C++ .NET and C#.NET, but, I wanted to help out the C++
> linux groups creating Windows Games,



I am not sure I understood what you want to do...



> and mostly internet applications.



Then you need to learn some platform-specific library. If you know
enough C++, and if you want to do Windows programming and since you have
VC++ .NET, I suggest


"Visual C++ .NET How To Program" by Deitel.

http://vig.prenhall.com/catalog/acad...373774,00.html


It is very good, it covers even multithreading.


However if you can wait, I suggest you wait for VC++ 2005 and the new
C++/CLI standard.



That said, the transition path of VC++ 2002/2003 to VC++ 2005 is
relatively small, that is the API remains the same, only the system
keywords change.



> Where can I can download the right tool or notepad and compiler that
> everyone usally uses in places like SourceForge ? is Visual C++ .NET
> identical to C++ standard?



VC++ is highly C++ standard compliant if this is what you mean.




--
Ioannis Vranos

http://www23.brinkster.com/noicys
 
Reply With Quote
 
Tom Widmer
Guest
Posts: n/a
 
      12-20-2004
pachanga wrote:
> I have Visual C++ .NET and C#.NET, but, I wanted to help out the C++
> linux groups creating Windows Games, and mostly internet applications.
> Where can I can download the right tool or notepad and compiler that
> everyone usally uses in places like SourceForge ? is Visual C++ .NET
> identical to C++ standard?


VC++ 2003 is close to the C++ standard. An alternative is GCC
(gcc.gnu.org), which is even closer to the standard for language
support, but slightly less close for library support. For Windows GCC,
you need MinGW (www.mingw.org).

Tom
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Are there any differences between 'Synplicity VHDL compiler, v1.0, b. 074R' and GHDL compiler? Merciadri Luca VHDL 5 10-14-2010 08:40 PM
How to redirect a "system" standard output and standard error to avariable (Linux) Venks Ruby 5 12-06-2007 12:21 AM
I need a CFRONT C++ Compiler for MS-DOS/Windows to replace an Apollo Domain 2.1.0 compiler Wormald C++ 1 02-06-2006 12:53 AM
add pexpect to the standard library, standard "install" mechanism. funkyj Python 5 01-20-2006 08:35 PM
How standard is the standard library? steve.leach Python 1 04-18-2005 04:07 PM



Advertisments