This is a problem which asks to find sum of all elements in an array. Approach 1: Run a for loop from first element to the last ,use a auxiliary variable sum and add each variable as you run through the loop. code for this approach looks like int sum=0...