Ok, so I learned VStudio 6.0 in college, went and bought VS05 lateley and I'm trying to come to terms with the subtle and not-so-subtle differences. I created a simple console application in C++ that prints a line of text to the console. It went a little something like this
I got a build error that iostream.h file could not be found...so what would I use instead?
#include <iostream.h>
int main()
cout<<"blah"<<endl;
return 0;
I got a build error that iostream.h file could not be found...so what would I use instead?
