Quiz Yourself on Arrays
Test your understanding of the material related to arrays and pointers.
We'll cover the following...
Arrays and pointers
1
Given the following code:
#include <stdio.h>
int x[5];
int main()
{
	int y[3];
	static int z[2] = {0, 1};
	return 0;
}
Where are x, y, and z stored?
A)
- xis placed inside the- datasection.
- yis placed on the stack.
- zis placed inside the- bsssection.
B)
- xis placed inside the- bsssection.
- yis placed on the stack.
- zis placed inside the- datasection.
C)
- xis placed inside the- datasection.
- yis placed in the- datasection.
- zis placed inside the- bsssection.
D)
- xis placed inside the- datasection.
- yis placed on the stack.
- zis placed on the stack.
Question 1 of 50 attempted
1.
The following question is more complex. Make sure to allocate enough time for it before you check the solution.
Given the following matrix declaration:
char matrix[2][3];
What is the equivalent of matrix[i][j] in pointer notation?
Make a memory drawing to find the formula. Consult the hint below if needed.
0/500
Show Answer
Did you find this helpful?
Follow the ...
 Ask