C++
Programming and Technical
What would be the equivalent pointer expression foe referring
the same element as
a[p][q][r][s] ?
Read Solution (Total 2)
-
- a[p][q][r][s]= *( a[p][q][r])+s
= *(*( a[p][q])+r)+s)
= *(*(*(a[p]+q)+r)+s)
= *( * ( * ( * (a+p) + q ) + r ) + s)
- 10 years agoHelpfull: Yes(2) No(0)
- or **(a+s *p + q + r )
- 9 years agoHelpfull: Yes(0) No(0)
C++ Other Question