write a program to find the number of even integers and odd
integers in a given array in c language

Answer Posted / ks djd

#include<stdio.h>
void main()
{
int a[10],i,b;
for(i=0;i<10;i++)
{scanf("%d",&a[i]);
}
printf("enter element to be searched:");
scanf("%d",&b);
for(i=0;i<10;i++)
{
if(a[i]==b)
printf("element found at location %d\n",i);
}
}

Is This Answer Correct ?    7 Yes 17 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the best way to comment out a section of code that contains comments?

1041


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

898


Hi can anyone tell what is a start up code?

1823


What is difference between constant pointer and constant variable?

888


What are the types of variables in c?

751


What is c definition?

946


Is calloc better than malloc?

770


Why is c not oop?

716


What is the difference between ++a and a++?

922


Is c programming hard?

756


Explain what is the difference between a string and an array?

870


4. main() { int c=- -2; printf("c=%d",c); }

1548


Explain the difference between malloc() and calloc() in c?

782


Should a function contain a return statement if it does not return a value?

803


5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.

1819