Can I build STL program with only .Net framework SDK installed?

.Net framework SDK 2.0 beta2 is installed and I just want to build a simple c++ "hello world" program(without CLI features, fully ISO C++ program)
#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!
[625 byte] By [sharpblade] at [2007-12-17]
# 1
No: this is not possible. You need to have Visual C++ installed in order to get the files for the C++ Standard Library.
JonathanCavesMSFT at 2007-9-9 > top of Msdn Tech,Visual C++,Visual C++ General...