Results 1 to 3 of 3

Thread: My VC++ compiler doesn't have <conio.h> where can i download libraries?

  1. #1

    Thread Starter
    Registered User struntz's Avatar
    Join Date
    Aug 1999
    Location
    Brockway,Pa,USA
    Posts
    199

    Question My VC++ compiler doesn't have <conio.h> where can i download libraries?

    Hello everyone!

    I just noticed that my Visual C++ 6.0 EE doesn't have like any libraries except a few!
    It doesn't have <conio.h> nor does it have <vector.h> or anything!
    I need a site where i can download and install teh new libraries so i can use them in my programs.... Is there any site where i can download the libs at? ANd if there is, is there any speical way i can make the VC++ compiler reconize the libraries so i can use them properly? Thanks for listening!

  2. #2
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594
    conio.h is ANSI C, and with VC++, vector.h should work.
    Maybe you forgot to install those in a custom installation?
    All the buzzt
    CornedBee

    "Writing specifications is like writing a novel. Writing code is like writing poetry."
    - Anonymous, published by Raymond Chen

    Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.

  3. #3
    Addicted Member
    Join Date
    Jan 2001
    Location
    Little Rock, Ar
    Posts
    151
    Some of the same function in conio are in stdio.
    Code:
    #include <conio.h>
    cputs()
    //--------------------------------
    #include <stdio.h>
    puts()
    perhaps you can find what you are looking for in there.

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