Making a 16 byte datatype in C++

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ikramshah
    New Member
    • Mar 2010
    • 2

    Making a 16 byte datatype in C++

    how to make a 16 byte data type in C++??
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    This might help

    Comment

    • whodgson
      Contributor
      • Jan 2007
      • 542

      #3
      Read up on classes. The name which you give to the class becomes the user defined type. Since one character is one byte in size, a string of sixteen characters will be of size sixteen bytes.

      Comment

      Working...