Click to See Complete Forum and Search --> : Complier


venkyomni
May 8th, 2008, 01:31 AM
Hi friends,
Can someone please tell me which compiler is the good one that supports all the newest features like Templates and Namspaces etc.. Because the one I am using right now is not supporting the header #include<iostream> ..

Thank you
Venkat

angelorohit
May 8th, 2008, 01:40 AM
Feel free to read this (http://angelorohit.blogspot.com/2008/01/out-with-old-stuff-teach-new-stuff.html). I hope it helps.

treuss
May 8th, 2008, 07:04 AM
Can someone please tell me which compiler is the good one that supports all the newest features like Templates and Namspaces etc.. Because the one I am using right now is not supporting the header #include<iostream> .."newest features" ?? You are talking about stuff from 1998, when the very first standard of the C++ language was created.

Anyways, you can get free standard-compliant compilers, e.g. Microsoft Visual C++ Express or gcc. Google is your friend.

PredicateNormative
May 8th, 2008, 08:08 AM
...because the one I am using right now is not supporting the header #include<iostream> .
I don't know but it sounds like you've got yourself a C compiler there. Which operating system are you using? If it's windows, then I'd go for Visual Studio express, that way you get a nice IDE with an easy to use "out of the box" debugger too.

JohnW@Wessex
May 8th, 2008, 09:17 AM
I'd add my vote for Visual Studio express.

venkyomni
May 9th, 2008, 01:32 AM
Thank you guys for the reply.....

-Venky