Thread: C++ (Help needed)

  1. #1
    Registered User
    Join Date
    Jan 2011
    Posts
    1

    C++ (Help needed)

    Hello everyone.

    I am new to programming. I have a few questions about C++ (libraries and functions)

    1) Firstly can anyone tell me the difference between a C++ library and help file?

    2) Also how can I access the C++ library in visual c++?

    3) Is it possible to view the code of the built in functions in C++?


    Any help would be greatly appreciated. Thanks

    ALI

  2. #2
    and the Hat of Guessing tabstop's Avatar
    Join Date
    Nov 2007
    Posts
    14,336
    1. Uh ... everything? A C++ library is precompiled binary code that implements some sort of functionality, and exposes an interface for programmers to use that functionality in their own programs. Any .dll on your system is a library (perhaps not necessarily a C++ library, but in some language); you have libraries for processing music and video files, libraries for dealing with the innards of Windows, libraries for compressing/decompressing files, etc. A help file is a file that contains human-readable information about a topic.

    2. Based on question 1, I'll ask: do you mean a library or a help file?

    3. I have been told yes, but I haven't gone looking for it.

  3. #3
    Registered User
    Join Date
    Oct 2006
    Posts
    3,445
    Quote Originally Posted by ALI84 View Post
    3) Is it possible to view the code of the built in functions in C++?
    it really depends on what you mean by "built in." if you mean features of the language, like sizeof(), typeid(), etc, then you'd need access to the compiler source, and with visual C++, unless you're a microsoft employee on the VC++ dev team, you're out of luck.

    if you're referring to library functions, with visual C++ you're still out of luck, but there are plenty of open source implementations of the standard librar(y/ies) that are viewable by anyone.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. free needed or not?
    By quantt in forum Linux Programming
    Replies: 3
    Last Post: 06-25-2009, 09:32 AM
  2. Piping/Redirection/Background processing help needed
    By cr80expert5 in forum C Programming
    Replies: 1
    Last Post: 04-27-2009, 10:25 PM
  3. C Programmers needed for Direct Hire positions
    By canefan in forum Projects and Job Recruitment
    Replies: 0
    Last Post: 09-24-2008, 11:55 AM
  4. C++ help needed
    By Enkindu in forum Projects and Job Recruitment
    Replies: 3
    Last Post: 08-31-2004, 11:24 PM
  5. Poll: Is pseudocode really needed ?
    By Nutshell in forum A Brief History of Cprogramming.com
    Replies: 29
    Last Post: 02-28-2002, 06:33 PM