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
What is the best way to comment out a section of code that contains comments?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Hi can anyone tell what is a start up code?
What is difference between constant pointer and constant variable?
What are the types of variables in c?
What is c definition?
Is calloc better than malloc?
Why is c not oop?
What is the difference between ++a and a++?
Is c programming hard?
Explain what is the difference between a string and an array?
4. main() { int c=- -2; printf("c=%d",c); }
Explain the difference between malloc() and calloc() in c?
Should a function contain a return statement if it does not return a value?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.