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
1 Posted Topic
#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 ; …
The End.
bluntaxe1