> typedef struct {
> char a [25] ;
> int b ;
> char c[16][10] ;
> } MyStruct ;
I could not sleep at night if I were using a struct like this.
I would change it to one of these:
typedef struct {
char a [26] ;
int b ;
char c[16][10] ;
} MyStruct ;
typedef struct {
int b ;
char a [25] ;
char c[16][10] ;
} MyStruct ;
typedef struct {
char a [25] ;
unsigned char b ;
char c[16][10] ;
} MyStruct ;
--
For information on using the Palm Developer Forums, or to unsubscribe, please see
http://www.palmos.com/dev/tech/support/forums/