Case 1 : Enter string 1 : hi Enter string 2 : hello Strings are not equal. Case 2 : Enter string 1 : 12345 Enter string 2 : 12345 Strings are equal! Case 3 : Enter string 1 : STRING Enter string 2 : string Strings are not equal.
Users Online
· Guests Online: 39
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
· Members Online: 0
· Total Members: 188
· Newest Member: meenachowdary055
Forum Threads
Newest Threads
No Threads created
Hottest Threads
No Threads created
Latest Articles
Articles Hierarchy
C++ Program to Compare Two Strings
C++ Program to Compare Two Strings
This is a C++ Program to Compare Two Given Strings for Equality.
Problem Description
The program takes two strings and checks for their equality.
Problem Solution
1. The program takes two strings.
2. Using string function, the two strings are compared.
3. The result is printed.
4. Exit.
C++ Program/Source code
Here is the source code of C++ Program to Compare Two Given Strings for Equality. The program output is shown below.
-
#include<iostream.h>
-
#include<string.h>
-
using namespace std;
-
int main ()
-
{
-
char str1[50], str2[50];
-
cout<<"Enter string 1 : ";
-
gets(str1);
-
cout<<"Enter string 2 : ";
-
gets(str2);
-
if(strcmp(str1, str2)==0)
-
cout << "Strings are equal!";
-
else
-
cout << "Strings are not equal.";
-
return 0;
-
}
Program Explanation
1. The user is asked to enter two strings and stored in ‘str1’ and ‘str2’.
2. Using an inbuilt function strcmp() under the library string.h, the two strings are compared for equality.
3. The result is then printed if they are equal are not.
Runtime Test Cases
Comments
No Comments have been Posted.
Post Comment
Please Login to Post a Comment.