First lets practice with pointers to basic C data types and
First, let\'s practice with pointers to basic C data types and some related pointer operations. We\'ll see referencing, dereferencing, and arithmetic operations. Compile and run this program. Suppose after the declaration of the variables on line 4, we have the following: Memory Chunk (address on the left, data on the right): Fill in the above memory chunk table to reflect the changes that lines 6, 7, and 8 cause.
Solution
In the first memory location value 10 is stored as we are assigning integer value 10 to integer1.
In the second memory address of the integer1 i.e., integer 10 is stored here.
In the third memory location address of p1 is stored
