Describe Processing an array?
The Single operations which involve complete arrays are not permitted in C language. therefore if a and b are similar arrays (for example same dimensionality, same data type and same size), comparison operations, assignment operations, and so on. Should be carried out on an element-by-element base. This is typically accomplished within a loop where every pass through the loop is used to process one array element. The number of passes through the loop will consequently equal the number of array elements to be processed.
Example: Following code is to replica content of one array to another array.
main()
{
int a[]={1,2,3,4,5,6,7,8,9,10}, b[10];
int i;
for(i=0;i<10;i++)
{
b[i]=a[i];
}
}