An array is a sequence of contiguous memory cells, all of the same size. The array name is an alias for a const-typed pointer to the first cell of the array. Array doesn't initializes it's values,during definition int a[10]; for(int i=0;i<10;i++) p...