what array type?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kenneth6
    New Member
    • Mar 2007
    • 79

    what array type?

    i am having an array.

    expected to contain these:
    array[0] Peter2
    array[1] Smith
    array[2] 2a@#6+
    array[3] 261
    array[4] Win

    I want to handle this array. what type of this array should i use without problem?
  • Ganon11
    Recognized Expert Specialist
    • Oct 2006
    • 3651

    #2
    A string array should work just fine. If this is C, an array of char pointers.

    Comment

    Working...