| |||||
Technical Support Support Resources
Product Information | C51: ACCESSING A STRUCTURE VIA A POINTERInformation in this article applies to:
SYMPTOMSIf I declare a structure called foo then declare a pointer to foo called foo_ptr I am then able to access members of the structure via the pointer using the '.' operator. For example: foo_ptr = &foo; // initialize pointer to a structure foo_ptr->x = 3; // correct member accessing foo_ptr.x = 3; // this also works but it should generate an error RESOLUTIONThis is a known problem in C51 V5.x. It has been corrected in C51 V6.x (see below). If you still use C51 V5.x, care must be taken when accessing structures using pointers that the correct operator is used (->). SEE ALSOFORUM THREADSThe following Discussion Forum threads may provide information related to this topic. Last Reviewed: Sunday, March 05, 2000 | ||||
| |||||