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