Create a program that defines two int arrays, one right
after the other. Index off the end of the first array into the
second, and make an assignment. Print out the second
array to see the changes cause by this. Now try defining a
char variable between the first array definition and the
second, and repeat the experiment. You may want to
create an array printing function to simplify your coding.
Create a program that defines two int arrays, one right after the other. Index off the end of the first array into the second, and make an assignment. Print out the second array to see the changes cause by this. Now try defining a char variable between the first array definition and the second, and repeat the experiment. You may want to create an array printing function to simplify your coding.