int compare(char s[],char t[]){int i=0;while(s[i]==t[i]&&s[i]!='\0')i++;return (s[i]=='\0'&&t[i]=='\0') ;}