Exercise 1: Finding Average in Array
Learn to write a function that calculates the average value of elements in an integer array using pointers. This exercise reinforces your understanding of pointer syntax and array handling in C++, helping you gain practical skills in basic memory management.
We'll cover the following...
We'll cover the following...
Problem statement
Write a findAvg function that takes a pointer to an ...