Can I build STL program with only .Net framework SDK installed?
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
cout << "Hello World!" << endl;
return 0;
}
When using "cl helloworld.cpp" for building, the following EROR message displayed:
helloworld.cpp(1) : fatal error C1083: Cannot open include file: 'iostream': No such file or directory
I want to know is it possible to build such program with only SDK installed? If possible, how? Thanks!

