Compare two strings: how to use strcmp : String Compare « String « C / ANSI-C






Compare two strings: how to use strcmp



#include <stdio.h>
#include <string.h>

int main ()
{
  char szKey[] = "Apple";
  char szInput[80];
  
  do {
  
     printf ("Which is my favourite computer? ");
     gets (szInput);
  
  } while (strcmp (szKey,szInput) != 0);
  
  printf ("Correct answer!\n");
  return 0;
}

           
       








Related examples in the same category

1.Compare strings: strcmp
2.Testing characters in a string: is digit and is alpha
3.Our own string compare function
4.String compare: how to use strncmp
5. Compare some characters of two strings: how to use strncmp