For any given data type T, a pointer to an array of T is declared as "T (*arr)[N];". It has the same value as a pointer to the first element of the array, but a different type (T (*)[N...
Actually there does not exist array rather here is a term called pointer to an array.let me explain with the help of one example.suppose we have following code#include<stdio.h>#define i 10main()...