Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Can someone help to understand pointers when they used with structures. Thanks Table 11-3 Expression Description s is a structure pointer and m is a
Can someone help to understand pointers when they used with structures. Thanks
Table 11-3 Expression Description s is a structure pointer and m is a member. This expression accesses the m member of the structure pointed to by s. a is a structure variable and p, a pointer, is a member. This expression dereferences the value pointed to by p. s is a structure pointer and m is a member. The * operator dereferences s, causing the expression to access the m member of the structure pointed to by s. This expression is the same as s->m . S->m s is a structure pointer and p, a pointer, is a member of the structure pointed to by s. This expression accesses the value pointed to by p. (The ->operator dereferences s and the * operator dereferences p.) s is a structure pointer and p, a pointer, is a member of the structure pointed to by s. This expression accesses the value pointed to by p. (*s) dereferences s and thd outermost operator dereferences p. The expression s->p is equivalent. *s->pStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started