int fun_1 (char *s1, char *s2) { int result = 1; for (int i = 0; s1[i] && s2[i]; i++) if (s1[i] != s2[i]) result = 0; return result; }