_pathos
Group: Members
Posts: 91
Joined: Aug. 2005 |
|
Posted: Mar. 02 2006,07:00 |
|
C++ is just a lot more complicated.
The compiler has to do a lot of work processing the files included directly/indirectly by iostream:
#include <istream> #include <ostream> #include <ios> #include <iosfwd> #include <exception> #include <bits/char_traits.h> #include <cstdio> <---- even the stdio C header file #include <bits/localefwd.h> #include <bits/ios_base.h> #include <streambuf> #include <bits/basic_ios.h>
Linking the C std functions is a piece of cake. stdio includes only one or two basic files.
|