C++ 6.0------>C++ express?

so i took a class about a year ago for C++ programming(im in highschool) i was bored so i thought id get back into it....but the only C++ program i can find is C++ express edition. It seems like EVERYTHING i learned in the class for C++ 6.0 doesnt work in C++ express...so is there any point in trying to learn this new C++ or just continueing the search for C++ 6.0 program?
MS Visual C++ is very old. Newer compilers use ISO C++, the standardised version of the language. It's almost the same as the old pre-standards one, the major difference is the following:
1
2
//old
#include <iostream.h> 

1
2
3
//New
#include <iostream> // not .h
using namespace std;

1
2
3
4
//New ( another way )
#include <iostream> // not .h

std::cout
Not only that - MFC which was a big part of 6.0 is not included in the 'express' editions.
Topic archived. No new replies allowed.