Binary files in C

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Balaram Das
    New Member
    • Dec 2006
    • 1

    Binary files in C

    hi friends, can any one tell me the purpose of binary files?
    I dont know C++. Any links to the tutorials???
  • zeny
    New Member
    • Jul 2006
    • 44

    #2
    I think i´m right if i say that the binary files serve the purpose of storing serializable objects, like Hashtables, Vectors and any other objects of classes that you can create. Hope i´ve answered your question.

    Best regards

    Comment

    • Banfa
      Recognized Expert Expert
      • Feb 2006
      • 9067

      #3
      Originally posted by zeny
      I think i´m right if i say that the binary files serve the purpose of storing serializable objects, like Hashtables, Vectors and any other objects of classes that you can create.
      This isn't wrong but it does not describe the full exent of a binary file.

      A binary file can store anything, in fact all files are binary files (text files are just binary files whose bytes are limited to a subset of the available values).

      Comment

      Working...