#include #include int main() { char *input; input = "My name is X"; if (1 == 0) { //Then printf("This will never execute.\n"); } else if (strstr(input, "My name is") != NULL) { input += 11; //This cuts "My name is " off the string printf("Cbot: Hi %s, that's a cool name.\n", input); } //EndIf; return 0; } //End.