- C Programming Examples
- C Programming Examples
- C Print Hello World
- C Get Input from User
- C Print Integer
- C Add Two Numbers
- C Add Subtract Multiply Divide
- C Add n Numbers
- C Area Perimeter of Square
- C Area Perimeter of Rectangle
- C Area Circum of Circle
- C Fahrenheit to Celsius
- C Celsius to Fahrenheit
- C Inches to Centimeters
- C Kilogram to Gram
- C Reverse a Number
- C Swap Two Numbers
- C Interchange Numbers
- C Print ASCII Value
- C Print Fibonacci Series
- C Check Palindrome or Not
- C Check Armstrong or Not
- C Find Armstrong Numbers
- C Find nCr and nPr
- C Find Profit Loss
- C Sum of their Square
- C First & Last Digit Sum
- C Sum of All Digit
- C Product of All Digit
- C Print Total Digit in Number
- C Check Perfect Number
- C Find Basic Gross Salary
- C Round Number to Integer
- C Print Series upto n Term
- C Find Factors of Number
- C if-else & Loop Programs
- C Check Even or Odd
- C Check Prime or Not
- C Check Alphabet or Not
- C Check Vowel or Not
- C Check Leap Year or Not
- C Is Reverse Equal Original
- C Make Calculator
- C Add Digits of Number
- Count Positive Negative Zero
- C Largest of Two Numbers
- C Largest of Three Numbers
- C Smallest of Two Numbers
- C Smallest of Three Numbers
- C Find Factorial of Number
- C Find LCM & HCF
- C Find LCM of n Numbers
- C Find HCF of n Numbers
- C Find Arithmetic Mean
- C Find Average, Percentage
- C Find Student Grade
- C Print Table of Number
- C Print Prime Numbers
- C Find Discount Purchase
- C Calculate Parcel Charge
- C Calculate Wage of Labor
- C Print Phone Bill
- C Conversion programs
- C Decimal to Binary
- C Decimal to Octal
- C Decimal to Hexadecimal
- C Binary to Decimal
- C Binary to Octal
- C Binary to Hexadecimal
- C Octal to Decimal
- C Octal to Binary
- C Octal to Hexadecimal
- C Hexadecimal to Decimal
- C Hexadecimal to Binary
- C Hexadecimal to Octal
- C Pattern Programs
- C Pattern Printing Programs
- C Print Diamond Pattern
- C Print Floyd's Triangle
- C Print Pascal's Triangle
- C Array Programs
- C 1D Array Programs
- C Linear Search
- C Binary Search
- C Largest Element in Array
- C Smallest Element in Array
- C Second Largest/Smallest
- C Count Even Odd
- C Array Element at Even
- C Array Element at Odd
- C Print Even Array Elements
- C Print Odd Array Elements
- C Sum/Product of Even/Odd
- C Reverse an Array
- C Insert Element in Array
- C Delete Element from Array
- C Merge Two Arrays
- C Bubble Sort
- C Selection Sort
- C Insertion Sort
- C Print Common Elements
- C 2D Array Programs
- C Add Two Matrices
- C Subtract Two Matrices
- C Transpose a Matrix
- C Multiply Two Matrices
- C Sum All Matrix Elements
- C Largest Element in Matrix
- C Print Row Column Total
- C 3D Array Programs
- C String Programs
- C Print String
- C Find Length of String
- C Compare Two String
- C Copy a String
- C Concatenate String
- C Reverse a String
- C Count Vowels Consonants
- C Replace Vowel in String
- C Delete Vowels from String
- C Delete Word from String
- C Frequency of Character
- C Count Word in String
- C Remove Spaces from String
- C Sort a String
- C Sort String in Alphabetical
- C Sort Words in Ascending
- C Sort Words in Descending
- C Uppercase to Lowercase
- C Lowercase to Uppercase
- C Swap Two Strings
- C Check Anagram or Not
- C Check Palindrome String
- C Print Number in Words
- C Print Successive Character
- C Character without Space
- C Remove Extra Spaces
- C File Programs
- C Read a File
- C Write Content to File
- C Read & Display File
- C Copy a File
- C Merge Two Files
- C Reverse File
- C Count All Character in File
- C List Files in Directory
- C Encrypt & Decrypt a File
- C Delete a File
- C Misc Programs
- Generate Random Numbers
- C Print Date Time
- C Print Message with Time
- C Get IP Address
- C Print Smiling face
- C Pass Array to Function
- Add Two Numbers using Pointer
- C Address of Variable
- C Shutdown Computer
- C Programming Tutorial
- C Tutorial
- C Programming Test
- C Programming Test
C Program to Compare Two Strings
In this article, you will learn and get code about checking whether the two input strings are equal or not with and without using standard library function.
Compare String in C without using strcmp() Function
This program will not use any standard library function say strcmp() that helps while comparing two string in C. Rather this program will compare the two given string by user with the help of self-defined code. Let's have a look at it:
#include<stdio.h> #include<conio.h> int main() { char str1[50], str2[50]; int i=0, chk=0; printf("Enter First String: "); gets(str1); printf("Enter Second String: "); gets(str2); while(str1[i]!='\0' || str2[i]!='\0') { if(str1[i]!=str2[i]) { chk = 1; break; } i++; } if(chk==0) printf("\nStrings are Equal"); else printf("\nStrings are not Equal"); getch(); return 0; }
This program was compiled and executed in Code::Blocks IDE. On executing the above program, you will see the output as shown in the snapshot given below:
Now supply any two string say codes and cracker and press ENTER key to see the output as shown here in the snapshot given below:
Let's take another sample run, in which let's suppose that user has provided two equal string say codes and codes.
Let's take a look at some of the main logic used in above program.
Logic used in previous Program
Here are the list of some main logic used in previous program:
- Scan both the string from user at run-time using gets() function
- Store first and second string to str1 and str2 variable
- Create a while loop, that runs until last character of both the string
- Inside the loop, use if statement, to check whether the first character of first string is not equal to the first character of second string. If it evaluates to be true, then initialize 1 to chk and use break keyword, to terminate the loop
- If condition of if block evaluates to be false, then the value of i gets incremented, and program flow goes back to the condition of while loop
- This will continue, until the condition of while loop evaluates to be false, or the condition of if block (inside the while loop) evaluates to be true
- After terminating the loop, check whether chk holds 0 or not. If it holds, then statements of if block never run. So both strings are equal
- Otherwise, if chk holds 1, then statement of if block executed, so both strings are not equal. That's it
For example, let's suppose that if user enters codes and cracker as two input string. So the dry run of the above program using these two given string (as input) is given below:
- Program declares two variables namely str1 and str2 of char type that can hold upto 50 characters
- Program declares another two variables namely i and chk with 0 as its initial value
- Program will scans two strings as input using gets() function
- If user enters any string that will be of size less than 50, say codes, then a null terminated character
(\0) automatically gets assigned after the last character (s) of the given string (codes). That is, if user
supplies codes as first string, then
- str1[0] holds c
- str1[1] holds o
- str1[2] holds d
- str1[3] holds e
- str1[4] holds s
- str1[5] holds \0
- Program checks the condition of while loop
- At first run, condition of while loop,
str1[i]!='\0' || str2[i]!='\0'
or
str1[0]!='\0' || str2[0]!='\0'
or
'c'!='\0' || 'c'!='\0'
evaluates to be true. Because in both cases, c is not equal to null terminated character \0 - So the program flow goes inside the while loop
- Program checks the condition of if block, that is,
str1[i]!=str2[i]
or
c!=c
evaluates to be false, so program flow does not goes inside the if block - Program increments the value of i and goes back to the condition of while loop again
- Program continue running until the condition of the while loop evaluates to be false
- Or inside the loop, if the condition of if block evaluates to be true, then program flow goes inside the if block and 1 gets initialized to chk variable. And using break keyword, program flow goes out of the while loop or the loop gets terminated
- And checks whether chk holds its original value (0) or not. If it holds, then if block's condition never evaluates to be true, so no any mismatched to character occurred from same position of both the string
- So the program prints as Strings are Equal as output. Otherwise, prints Strings are not Equal
Compare String in C using Library Function
Let's create another simple program that that also checks whether the given two strings are equal or not using standard library function of C:
#include<stdio.h> #include<conio.h> #include<string.h> int main() { char str1[50], str2[50]; int len1, len2; printf("Enter First String: "); gets(str1); printf("Enter Second String: "); gets(str2); len1 = strlen(str1); len2 = strlen(str2); if(len1==len2) { if(strcmp(str1, str2)==0) printf("\nStrings are Equal"); else printf("\nStrings are not Equal"); } else printf("\nStrings are not Equal"); getch(); return 0; }
This program will produce the same output as of previous program. In above program, first we have checked whether the length of both the string is equal or not, if it is equal then process further. Otherwise if length of the given two strings is not equal, then obviously both the strings will not be equal.
Note - If both strings are equal, then strcmp() function returns 0. Otherwise, if both strings are not equal, then strcmp() function returns 1
Same Program in Other Languages
« Previous Program Next Program »
Follow/Like Us on Facebook
Subscribe Us on YouTube