Name: Anonymous 2008-06-07 7:32
So I've been coding C++ for a long time and I just got Visual C++ 2008 Express Edition.
The thing is everything I do including hello world seems to be 'out of date'.
So is it worth relearning because of this or should I just go with an older version?
Example of out of date. Does anyone know why?
The thing is everything I do including hello world seems to be 'out of date'.
So is it worth relearning because of this or should I just go with an older version?
Example of out of date. Does anyone know why?
#include <iostream>
using namespace std;
int main(){
cout << "Hello World!\n";
system("Pause");
}