This program is about compare and print the given string without using pre-define functions using for loops and if conditions.
#include<stdio.h> int main() { int i,m=0,c=0; char a[100],b[100]; printf("\nEnter the First String:"); gets(a); printf("\nEnter the Second String:"); gets(b); printf("\nGiven First String:"); puts(a); printf("\nGiven Second String:"); puts(b); for(i=0;a[i]!='\0'||b[i]!='\0';i++) { if(a[i]==b[i]) { c++; } m++; } if(m==c) { printf("\nTwo Strings are Equal"); } else { printf("\nThis Strings are Not Equal"); } return 0; }To download raw file Click Here
Enter the First String:Tutor Joe's Computer Education Enter the Second String:Tutor Joe's Computer Education Given First String:Tutor Joe's Computer Education Given Second String:Tutor Joe's Computer Education Two Strings are Equal
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions