#include #include #include #include int main(void) { string word = get_string("Word: "); int l = strlen(word); for (int i = 1; i < l; i++) { // If NOT alphabetical if (word[i] > word[i - 1]) { printf("No\n"); return 0; } } }