/** strcmp ****************************************************************** #include #include void main() { const char temp1[16] = {"abc"}; const char temp2[16] = {"abb"}; int re = strcmp(temp1,temp2); if(re==0) { printf("temp1 = temp2\n"); } else if(re 0 { printf("temp1 > temp2\n"); } } ************************************************************..