Author |
Message |
Topic: Problem pointing into a structure |
jerrybrowse
Replies: 2
Views: 4450
|
Forum: General CCS C Discussion Posted: Fri May 20, 2005 9:41 am Subject: Problem pointing into a structure |
Thanks for the reply Mike.
No, I'm afraid block is defined (as an int8) and is set to a value which in this case is zero (hex).
Regards
Jerry |
Topic: Problem pointing into a structure |
jerrybrowse
Replies: 2
Views: 4450
|
Forum: General CCS C Discussion Posted: Fri May 20, 2005 9:25 am Subject: Problem pointing into a structure |
I have a problem accessing data within a structure. The structure is:
struct maxfio
{
int max_rcv[32];
int *p_rcv;
int rcv_chksm;
} maxfcb[4];
max_rcv ... |
|