Write a C program that prompts and gets two strings from the user (no spaces will be entered). Compare the two strings and print a statement to the console stating whether the two strings are equal.
Sample Run 1
Enter a string: hello
Enter a string: world
hello is not equal to world
Sample Run 2
Enter a string: hello
Enter a string: hello
hello is equal to hello