 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
pachanga Guest
|
Posted: Sun Dec 19, 2004 2:15 am Post subject: what is the C++ Standard and compiler for Windows XP Users? |
|
|
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?
|
|
| Back to top |
|
 |
Raymond Martineau Guest
|
Posted: Sun Dec 19, 2004 4:50 am Post subject: Re: what is the C++ Standard and compiler for Windows XP Use |
|
|
On 18 Dec 2004 18:15:47 -0800, "pachanga" <quakepapi (AT) yahoo (DOT) com> wrote:
| Quote: | 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
| Quote: | 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.
|
|
| Back to top |
|
 |
EventHelix.com Guest
|
Posted: Sun Dec 19, 2004 2:56 pm Post subject: Re: what is the C++ Standard and compiler for Windows XP Use |
|
|
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
|
|
| Back to top |
|
 |
Ioannis Vranos Guest
|
Posted: Sun Dec 19, 2004 3:50 pm Post subject: Re: what is the C++ Standard and compiler for Windows XP Use |
|
|
pachanga wrote:
| Quote: | 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...
| Quote: | 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/academic/product/0,1144,0134373774,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.
| Quote: | 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
|
|
| Back to top |
|
 |
Tom Widmer Guest
|
Posted: Mon Dec 20, 2004 12:39 pm Post subject: Re: what is the C++ Standard and compiler for Windows XP Use |
|
|
pachanga wrote:
| Quote: | 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 ([url]www.mingw.org)[/url].
Tom
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|