#include #include #include #include #include int main(void) { char *s = get_string("s: "); char *t = get_string("t: "); if (s==t) { printf("Same\n"); } else { printf("Different\n"); } }