#include <stdio.h> #include <string.h> #include "ctype.h" int three_type(char* str) { int upper,lower,other,digit; upper=lower=other=digit=0; int len = strlen(str); for(int i=0;i<len;i++) { if(islower(str[i])){ lower =1; } ...