Design a program using an array that lists even numbers and
odd numbers separately from the 12 numbers supplied by a user.
Answer Posted / atul shukla
in list 12 all can be even or all can be odd so it require
3 array of same size
#include<stdio.h>
void main()
{
int a[12],even[12],odd[12],i,c=0,d=0;
printf("enter 12 numbers");
for(i=0;i<12;i++)
scanf("%d",&a[i]);
for(i=0;i<12;i++)
(n[i]%2==0)?even[c++]=a[i]:odd[d++]=a[i];
printf("seprate list of odd entries");
for(i=0;i<=d;i++)
printf("%d",odd[i]);
printf("seprate list of even entries");
for(i=0;i<=d;i++)
printf("%d",even[i]);
}
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
What is the condition that is applied with ?: Operator?
What is LINKED LIST? How can you access the last element in a linked list?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is const volatile variable in c?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
What is the purpose of ftell?
Tell us the use of fflush() function in c language?
Is printf a keyword?
Explain the properties of union. What is the size of a union variable
How can I change the size of the dynamically allocated array?
What is main return c?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What does typedef struct mean?
What’s the special use of UNIONS?
How to write a multi-statement macro?