Still if you like the old stuff..or for some reason have to work with the graphics.h(still usd in colleges) then u cn install dos emulator n the normal turbo c++ n use it inside dos emulator...it works in windows 7...else for a modern IDE go for netbeans with c++ plugin....also good for java!
n yeah i think dev c++ isnt up-to-mrk.......
May I know why? Because I think its pretty good.
#include<iostream.h>
int main()
{
int x;
cin>>x;
cout<<"\n"<<x;
return(0);
}
Visual C++ is a very good compiler, though it takes up a lot of space...
i had it earlier nd it returned errors in a simple code of takn a value frm user and printing it on screen.... d error was sayn to use mre header files(i cant write d exact error as i hv uninstalled it)... the code i wrote was:--->
Code:#include<iostream.h> int main() { int x; cin>>x; cout<<"\n"<<x; return(0); }
#include<iostream>
using namespace std;
int main()
{
int x;
cin>>x;
cout<<"\n"<<x;
return 0;
}
May I know why? Because I think its pretty good.