Write a C program to find the summation of all the even numbers stored in an array.
Strategy: C Program: `#include<stdio.h> int main() {// Example arrayint a[] = {2, 5, 8, 10, 15, 6, 12, 7};int n = sizeof(a) / sizeof(a[0]);int sum = 0; } Example Output: The summation of even numbers in the array is: 42 Are you looking for the Class 10 Computer Science SEBA Solution? You are in the…