|
-
Jan 2nd, 2003, 11:36 PM
#1
Thread Starter
Member
I need some newb help
ok well I would like to know all the contents of stdio.h and its meaning, along with some or all of the other c++ librerie's. Please help me... I could not figure this crap out lol.....
A way to find answers, is to ask questions, for a question that has been asked may seem stupid for 5 minutes, but a question never asked will remain unknown forever.
-
Jan 3rd, 2003, 07:14 AM
#2
You can find the source of stdio.h, and other library headers in your compilers include directory, usualy compiler-path/include. These headers only contain the function declarations of the library functions, the actual code is in a static or dynamicly linked library (.lib). For MSVC the source code of that lib is not availible, for gcc (glibc) the library is open source.
The C++ standard librarie headers (no extention) usualy don't need additional .cpp files, they are all contained in the header files, but be prepared for a lot of templates (and ugly code if you have MSVC)
-
Jan 3rd, 2003, 08:26 AM
#3
Hyperactive Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|