w3resource

C Exercises: Compute the sum of values in a given array of integers except the number 17

C-programming basic algorithm: Exercise-52 with Solution

Write a C program to compute the sum of values in a given array of integers except the number 17. Return 0 if the given array has no integers.

C Code:

#include <stdio.h>
#include <stdlib.h>

// Function prototype for 'test'
int test(int nums[], int arr_size);

int main(void){
    // Declaration and initialization of an integer array 'array1'
    int array1[] = {1, 2, 5, 7, 9, 10, 12, 17};

    // Calculating the size of the array 'array1'
    int arr_size = sizeof(array1)/sizeof(array1[0]);

    // Printing a message indicating the purpose of the program
    printf("Sum of values in the array of integers except the number 17: ");

    // Printing the result of the 'test' function for the array 'array1'
    printf("%d",test(array1, arr_size));
}    

// Definition of the 'test' function
int test(int nums[], int arr_size)
{
    // Declaration of a variable 'sum' to accumulate the sum of values
    int sum = 0;

    // Looping through the elements of the array
    for (int i = 0; i < arr_size; i++)
    {
        // Checking if the current element is not equal to 17
        if (nums[i] != 17)
        {
            // Adding the value to 'sum' if it's not equal to 17
            sum += nums[i];
        }
        else
        {
            // Skipping the element if it is equal to 17
            i++;
        }
    }

    // Returning the accumulated sum
    return sum;
}

Sample Output:

Sum of values in the array of integers except the number 17: 46

Pictorial Presentation:

C Programming Algorithm: Compute the sum of values in a given array of integers except the number 17

Flowchart:

C Programming Algorithm Flowchart: Compute the sum of the two given integer values

C Programming Code Editor:

Previous: Write a C program to count even number of elements in a given array of integers.
Next: Write a C program to compute the sum of the numbers in a given array except those numbers starting with 5 followed by atleast one 6. Return 0 if the given array has no integer.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/c-programming-exercises/basic-algo/c-programming-basic-algorithm-exercises-52.php