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
What is uint8 in c?
What is the g value paradox?
Write a program to generate the Fibinocci Series
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
how to find binary of number?
What is multidimensional arrays
Which is best linux os?
why return type of main is not necessary in linux
How can I recover the file name given an open stream or file descriptor?
In which layer of the network datastructure format change is done
How arrays can be passed to a user defined function
How do you print an address?
Difference between MAC vs. IP Addressing
how to execute a program using if else condition and the output should enter number and the number is odd only...
Calculate 1*2*3*____*n using recursive function??