Thread: Questions i probably should have asked a long time ago

  1. #1
    Registered User
    Join Date
    Feb 2002
    Posts
    465

    Questions i probably should have asked a long time ago

    ok, i dont know how else to say this:

    how do i get a library? and how do i know which ones i have? and how do i know which librarys do what?

    a lot of times i just #include everything i can think of just to make sure i am able to do what i want. i want to be able to include only what i need and know what i will need to include to do things in the future.

  2. #2
    Mayor of Awesometown Govtcheez's Avatar
    Join Date
    Aug 2001
    Location
    MI
    Posts
    8,823
    If you get a decent reference book, that'll usually tell you which libraries to include.

    The libraries come with your compiler. You usually don't get other ones (refer the the Programming FAQ for this)

  3. #3
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    You can buy additional libraries, these will come with their own API and header files. Of course, you will need to know what it is you want to do before you can search for a library to do it! In just about every case, if you think there is a market for a library of functions that do "x", then a search of google or similar will find at least 10 already done.

    Typical third party libraries include graphics libraries, (OpenGL for example), mathematical libraries, networking/telephony stuff. You get the idea.

    Of course, if you have a brilliant idea for a library that could be sold for a fortune and can't find it done already, then please tell me about it!
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Compiling sample DarkGDK Program
    By Phyxashun in forum Game Programming
    Replies: 6
    Last Post: 01-27-2009, 03:07 AM
  2. sorting using pointer to pointer not working
    By eager2no in forum C Programming
    Replies: 17
    Last Post: 09-21-2008, 12:52 AM
  3. hton long long
    By carrotcake1029 in forum C Programming
    Replies: 1
    Last Post: 06-01-2008, 08:26 PM
  4. Sending an email in C program
    By Moony in forum C Programming
    Replies: 28
    Last Post: 10-19-2006, 10:42 AM
  5. Replies: 3
    Last Post: 06-17-2005, 02:52 AM