home *** CD-ROM | disk | FTP | other *** search
- main() /* strcmp.c -- illustrates string compare strcmp() function */
- {
- char s[200], t[200];
- int i,j,k;
-
- puts("Please type:");
- gets(s);
- puts("& some more:");
- gets(t);
- puts("Thanks");
- i = strcmp(s, t);
- if (i == 0)
- puts("You typed the same thing twice!");
-
- }