Get premium membership and access questions with answers, video lessons as well as revision papers.

Represent a two-dimensional array using pointer?

      

Represent a two-dimensional array using pointer?

  

Answers


caroline

Address of a[I][j] Value of a[I][j]
&a[I][j]
or
a[I] + j
or
*(a+I) + j
*&a[I][j] or a[I][j]
or
*(a[I] + j )
or
*( * ( a+I) +j )
carol1 answered the question on April 13, 2018 at 15:43


Next: What is a preprocessor, what are the advantages of preprocessor?
Previous: What are the pointer declarations used in C?

View More Computer Science Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions