So you can do either
orCode:void addchars(char sa[128][25])
at your convenience.Code:void addchars(char (*sa)[25])
This is a discussion on copy strings in array within the C Programming forums, part of the General Programming Boards category; So you can do either Code: void addchars(char sa[128][25]) or Code: void addchars(char (*sa)[25]) at your convenience....
So you can do either
orCode:void addchars(char sa[128][25])
at your convenience.Code:void addchars(char (*sa)[25])
thankyou,
it seems like i need a mega c tutorial rehash on pointers and arrays!
thanks for your time.
it looks like you need to learn to differentiate between pointers and arrays, since they can be very similar but very different at the same time.