Answered step by step
Verified Expert Solution
Link Copied!

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

image text in transcribed

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->p

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions