I'm not sure why everyone's advising against using the standard library. This method assumes you want your code to run on Windows 2000 or later and don't mind losing support for Win 9x. You can still use the C/C++ standard library - You can use the /MT option in your project's C/C++ Code Generation pages, which will link in the standard library statically.
However, two notes, the first from me: the idea of having a dynamically linked standard library is that any bugs in it will get patched by Windows Update (in theory). If you link the library in statically, you need to redistribute your application to fix standard library bugs. So it isn't advised.
Secondly, from the MSDN article on compiler options:
Caution Do not mix static and
dynamic versions of the run-time
libraries. Having more than one copy
of the run-time libraries in a process
can cause problems, because static
data in one copy is not shared with
the other copy. The linker prevents
you from linking with both static and
dynamic versions within one .exe file,
but you can still end up with two (or
more) copies of the run-time
libraries. For example, a dynamic-link
library linked with the static
(non-DLL) versions of the run-time
libraries can cause problems when used
with an .exe file that was linked with
the dynamic (DLL) version of the
run-time libraries. (You should also
avoid mixing the debug and non-debug
versions of the libraries in one
process.)
In short, doing this can cause confusion if you try to build in other components linked against a dynamically-linked standard library.
Of course, the other downside is that this will make your executable larger, too.
Edit: the result, under depends.exe, looks like this: (of course, I'm using 64-bit Windows, which is only available for XP and later... if you want to know what this looks like on 32-bit windows, imagine if the 64s weren't there!).
