Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.73K
~2K People Reached
Favorite Forums
Favorite Tags
c x 1

1 Posted Topic

Member Avatar for TrueCoding

[B]HOPE IT CAN HELP TO US :D[/B] #include<stdio.h> #include<conio.h> int main() { int list[5]; int i; clrscr(); for(i=0;i<=4;i++) { printf("Enter no. %d:",i+1); scanf("%d",&list[i]); } printf("The even nos.:"); for(i=0;i<=4;i++) { if(list[i]%2==0) { printf("%d\t",list[i]); } } printf("\n The odd nos.:"); for(i=0;i<=4;i++) { if(list[i]%2==1) { printf("%d\t",list[i]); } } getch(); return 0 }

Member Avatar for Rushirl Quiño
0
2K

The End.