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
Explain how do you search data in a data file using random access method?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Write the Program to reverse a string using pointers.
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
How to declare pointer variables?
How can you check to see whether a symbol is defined?
Why are algorithms important in c program?
How to throw some light on the b tree?
Can we change the value of #define in c?
What is string length in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Why is extern used in c?
Is null always defined as 0(zero)?
How arrays can be passed to a user defined function
How can I direct output to the printer?