0
How to get sum of array elements excluding the numbers between a and b using c language?
where a and b are some elements of array. Have to find sum of array excluding the number between the a and b.
2 Respostas
0
store the two numbers, iterate through the array and add the numbers. then, when you find number a, stop adding the numbers until you reach b, then you can start adding them again
0
what if user inputs b first then a. Then this program won't work.