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
~179 People Reached
About Me

I like c programing

Interests
c programing
PC Specs
500 gp
Favorite Forums
Favorite Tags
c x 1
Member Avatar for Mir Mahfuz

#include <stdio.h> #include <string.h> int main() { char string[100]; int c = 0, count[26] = {0}; printf("Enter a string\n"); gets(string); while (string[c] != '\0') { if (string[c] >= 'a' && string[c] <= 'z') count[string[c]-'a']++; /*I do not understand this line/* c++; } for (c = 0; c < 26; c++) …

Member Avatar for David W
0
179