// Pantea Aria // strings - strlen - strcpy - strcmp // compare two strings #include #include int main(void) { char input1[] = "Hello"; char input2[]; // strcpy input1 to input2 // what is the length of input1? // compare the strings above with strcmp // show the output // fgets a new input, enter "Pantea" // then strcmp with "Pantea" // is there any issue? return 0; }