Results 1 to 3 of 3

Thread: I need some newb help

  1. #1

    Thread Starter
    Member
    Join Date
    Nov 2002
    Location
    Whaaaaat...........
    Posts
    44

    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.

  2. #2
    Fanatic Member twanvl's Avatar
    Join Date
    Dec 2001
    Posts
    771
    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)

  3. #3

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width