// Compare0.c #include #include int main(void) { int i = get_int("i: "); int j = get_int("j: "); if (i==j) { printf("Same\n"); } else { printf("Different\n"); } } //Compare1.c #include #include #include int main(void) { string s = get_string("s: "); string t = get_string("t: "); if (strcmp(s,t)==0) { printf("Same\n"); } else { printf("Different\n"); } } //Compare2.c #include #include #include in..