In this tutorial you will learn about the C Program to Find Sum of Even and Odd Numbers in an Array and its application with practical example.
C Program to find Sum of Even and Odd numbers in an Array
In this tutorial, we will learn to create a C program that will find Sum of Even and Odd numbers in an Array using C programming.
Prerequisites
Before starting with this tutorial, we assume that you are the best aware of the following C programming topics:
- Operators in C Programming.
- Basic Input and Output function in C Programming.
- Basic C programming.
- For loop in C programming.
- Arithmetic operations in C Programming.
What is an Even number?
A number is said to be an even number when that number is divided by two into two equal whole numbers.
What is an Odd number?
A number is said to be an odd number when that number is divided by two into two, not equal whole numbers.
What is An array?
The array is a collection of similar data types. An array can store multiple values with different indexes in memory by using a single variable. The array can be both single as well as multidimensional.
Program to find Sum of Even and Odd numbers in an Array.
In this program, we will first take the input array size and the elements from the user. Then we will separate the even and odd numbers from that array and add them separately. At last, we will print that numbers.
With the help of this program, we can Print Sum of Even & Odd numbers in an Array.
Program Code:-
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
/* C Program to find Sum of Even and Odd Numbers in an Array */ #include<stdio.h> int main() { //Declaring the required variables for the program. int Size, i, a[10]; int evensum = 0, oddsum = 0; //i = it will hold the integer value to control the loop. //a[10] = it will hold the integer value. //size = it will hold the integer value. //evensum = it will hold the integer value. //oddsum = it will hold the integer value. //Taking the input numbers of elements from the user printf("\n Please Enter the Size of an Array : "); scanf("%d", &Size); //Taking the elements of the array printf("\nPlease Enter the Array Elements\n"); for(i = 0; i < Size; i++) { scanf("%d", &a[i]); } //Finding the even and odd sum of the elements of the array. for(i = 0; i < Size; i ++) { if(a[i] % 2 == 0) { evensum = evensum + a[i]; } else { oddsum = oddsum + a[i]; } } //printing the even and the odd elements sum of the array. printf("\n The Sum of Even Numbers in this Array = %d ", evensum); printf("\n The Sum of Odd Numbers in this Array = %d ", oddsum); return 0; } |
Output:-
In the above program, we have first initialized the required variable.
- evensum = it will hold the integer value for the sum of numbers.
- oddsum = it will hold the integer value for the sum of the odd numbers.
- i = it will hold the integer value.
- Size = it will hold the integer value of the input.
Input number of elements from the user.
Program Logic Code.
Printing output sum.