Code Snippets C

#include
#include
int main(void)
{
char *p = "stop";
char str[100];
do {
printf("Enter a string: ");
gets(str);
} while(strcmp(p, str));
return 0;
}