I am trying to compare a computer generated word to display the following however, when Quit is entered it produces the output "Hello". What is my error in the code?
#include <stdio.h>
#include <string.h>
int main(void) {
char userString[50];
strcpy(userString, "Quit");
/* Your...