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
1 Posted Topic
[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 }
The End.
Rushirl Quiño