Computer Science, asked by JdEpic, 28 days ago

The process of checking relationship between two strings c++

Answers

Answered by abhinavgeo2020
0

Answer:

Check if two strings are equal C++

1. String strcmp() function in C++

The function returns 0 if both the strings are equal or the same.

The input string has to be a char array of C-style string.

The strcmp() compares the strings in a case-sensitive form as well.

Explanation:

Similar questions