//Using the strcmpi() function. The strcmpi function compares //strings to see if they are the same. It's just like strcmp, but //it ignores the case of the string. This way BAD is the same //as Bad or bad. #include #include void main() { char reply1[]="fine"; char reply2[]="good"; char reply3[]="ok"; char reply4[]="bad"; char reply5[]="terrible"; char reply6[]="yucky"; char input1[10]; char question1[]="\tHow are you today? "; char response1[]="\tI'm glad to hear that. I'm fine, too.\n\n\n"; char response2[]="\tThat's too bad. Tell me about it.\n\n\n"; cout<