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

1 Posted Topic

Member Avatar for psuspect

#include <stdio.h> #include <conio.h> int countchar( char list[10]); int main() { char message [10]; int numchar; clrscr(); printf("\nType in a word: "); gets(message); numchar = countchar (message); printf ("The number of characters entered is %d\n", numchar); getch (); return 0; } int countchar( char list[10]) { int i=0, count=0 ; …

Member Avatar for bluntaxe1
0
539

The End.