Sonoma State University
Department of Computer Science
CS-460: Programming Languages
Exercise 9b

Objective:

In a team of three or four students, consider the following C declaration, compiled on a 64-bit x86 machine:

struct
{
  int n;
  char c;
}
A[10][10];

If the address of A[0][0] is 1000 (decimal), what is the address of A[3][7]?

Submitting your solution:

Since this is a group assignment, please write the names of each member of your team on your assignment submission along with "Exercise 9b".

Exercise 9a Rubric

CRITERIA RATINGS POINTS
Problem 1 Proficient
10 points

Solution indicates address of the two-dimensional array element A[3][7].
Below Expectation
0 points

No solution submitted.
10 points
Total points: 10