Thread: reading a file problem

  1. #31
    Registered User
    Join Date
    Oct 2005
    Posts
    133
    Thanks! You guys are awesome.

  2. #32
    Registered User
    Join Date
    Oct 2001
    Posts
    2,934
    >how do you know which librarys are C librarys which are C++ and which are non standard and still require the .h?
    It takes a while to learn. Ideally get a good book (see the sticky at the top of the forum for recommendations). Accelerated C++ is supposed to be good.

    One other note: most nonstandard headers need a .h. Examples would be:
    Code:
    <windows.h>    //For Windows programming
    <conio.h>      //For clrscr(), gotoxy()
    <sockets.h>    //For sockets (network) programming
    <signal.h>
    Last edited by swoopy; 02-13-2006 at 07:02 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. File transfer- the file sometimes not full transferred
    By shu_fei86 in forum C# Programming
    Replies: 13
    Last Post: 03-13-2009, 12:44 PM
  2. Post...
    By maxorator in forum C++ Programming
    Replies: 12
    Last Post: 10-11-2005, 08:39 AM
  3. Replies: 20
    Last Post: 06-12-2005, 11:53 PM
  4. Replies: 3
    Last Post: 03-04-2005, 02:46 PM
  5. Problem reading file
    By winsonlee in forum C Programming
    Replies: 2
    Last Post: 04-23-2004, 06:52 AM