//Program to read n numbers in an array and display their sum and average. Use the concept of pointer to access array elements.
In C programming, pointers are variables that store the memory address of another variable. Instead of holding a direct value, pointers hold the location where a value is stored in memory. Pointers ...