Home » C strcmp() function

C strcmp() function

by Online Tutorials Library

C Compare String: strcmp()

The strcmp(first_string, second_string) function compares two string and returns 0 if both strings are equal.

Here, we are using gets() function which reads string from the console.

Output:

Enter 1st string: hello Enter 2nd string: hello Strings are equal 
Next TopicC strrev()

You may also like