I need a compiler

Right now I'm using "Dev-C++" but, ANSI-C++ standard canot be suported by it, atleast thats what I think.
So can someone tell me what program do you use for c++ programing?
And btw from what you can see Im new at c++ programing.
Last edited on
you could try borland although i dont think DEV-C++ doesnt support ANSI-C++ standard.
i use linux so my compiler is different. i have GCC.
You could use Visual Studio Express Edition
Dev-C++ uses MingW (GCC). This should be 100% ANSI C++ compliant.
Yeah, look at this program:
1
2
3
4
5
6
7
8
9
10
#include <iostream>
using namespace std;
template <class T>
bool ansisupported (T x) { return true; }

int main() {
  if (ansisupported(0)) cout << "ANSI OK";
  cin.get();
 return 0;
}

If it runs, ANSI is supprted, as it uses features included in ANSI.
Topic archived. No new replies allowed.