#include #include #include #include int main(void) { string word = get_string("Word: "); int l = strlen(word); for (int i = 0; i < l; i++) { if (word[i] > 96 && word[i] < 123) { } } printf("\n"); }