/* Program 3 - string statistics -get a string from the user (that includes spaces) -output -length of the string -number of digits -number of alphabet characters -number of upper case -number of lower case -number of punctuation -number of spaces */ #include #include #include #include #define N 250 int main() { char input[N]; int i; int alpha=0, digit=0, upper=0, lower=0, punct=0, space=0; printf("Enter a string.\n"); gets(input); for(i=0; i