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.80K
~116 People Reached
Favorite Forums
Favorite Tags
c x 1

1 Posted Topic

Member Avatar for diegojoven

hi i am sending the code to count no of 5's in an array jus see this......... [code] #include<stdio.h>#define MAX 5#define LIMIT 5int main(void){int a[MAX]={51,5,855,55,5};int c=0,i,n,r;char b[LIMIT];for(i=0;i<MAX;i++) { n=a[i];while(n!=0){r=n%10;if(r==5){c=c+1;}n=n/10;} }printf("\ncount of 5's is : %d\n",c);return 0;}[/code]my personal id: [email]snipped[/email]

Member Avatar for WaltP
0
116

The End.