home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c025 / 1.ddi / STRCMP.C < prev    next >
Encoding:
Text File  |  1985-01-24  |  284 b   |  16 lines

  1. main()    /* strcmp.c -- illustrates string compare strcmp() function */
  2. {
  3.     char s[200], t[200];
  4.     int i,j,k;
  5.  
  6.     puts("Please type:");
  7.     gets(s);
  8.     puts("& some more:");
  9.     gets(t);
  10.     puts("Thanks");
  11.     i = strcmp(s, t);
  12.     if (i == 0)
  13.         puts("You typed the same thing twice!");
  14.  
  15. }
  16.