write a program to find the number of even integers and odd
integers in a given array in c language
Answer Posted / anup majhi
#include<stdio.h>
#include<conio.h>
#define size 100
void check(int[],int);
int i;
main(){
int a[size],m
printf("Enter the array length ");
scanf("%d",&m);
printf("Supply elements to the array ");
for(i=0;i<m;i++)
scanf("%d",&a[i]);
check(a,m);
}
void check(int a[],int b){
int even=0,odd=0;
for(i=0;i<b;i++){
if(a[i]%2==0)
even++;
else
odd++;
}
printf("Number of even no. in the array =%d ",even);
printf("\nNumber of odd no. in the array =%d ",odd);
}
out put:
Enter the array length 5
Supply array elements 1 2 3 4 5
Number of even no. in the array =2
Number of odd no. in the array =3
Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
Explain #pragma statements.
How can I direct output to the printer?
What is the use of a conditional inclusion statement in C?
How many identifiers are there in c?
What are the advantages and disadvantages of a heap?
What does the c preprocessor do?
Why doesnt that code work?
How do I use strcmp?
why wipro wase
What is the use of define in c?
Write a program for Overriding.
How can you tell whether two strings are the same?
What is a stream water?
How do you use a 'Local Block'?
What are types of functions?