C++ Programming Exercises - practice set 3
C++ Programming Exercises - practice set 3
Set 3
Concepts covered:
Pointers - Arrays - Functions - Input and Output - Loops - Conditional
Statements
Problems:
Function Signature:
int productArray(int *arr, int size);
Input:
An integer array of size n entered by the user.
Output:
Print the product of the array elements.