Give some sort of effort as to what you think to show you not just wanting asnwers:
1. very easy. Name of array is just like asking name of variable. name[arraySize].
2. wants to know which array is declarized, so if you know what arrays are and how their used. you will have the declared array ex: > name[3] < in this case would point to the 3rd element in the array size
#include <iostream>
#include <conio>
int main()
{
int i, x[6], y[6] = {3, 8, 2, 9, 4, 1};
// ^ ^ ^
// | | |
// | | -- Something is being initialized here (which array is it?)
// | ------- An array is being defined here
// ------------- An array is being defined here
//
for(i=0; i<=5; i++)
x[i] = y[i];
// ^
// |
// ----------- You are assigning values from one array to the other.
for(i=0; i<=5; i++)
cout<<x[i];
getch();
return 0;
}