This program is about compare and print the given string using pre-define functions.
#include<stdio.h> #include<string.h> int main() { char a[100],b[100]; printf("\nEnter the First String:"); gets(a); printf("\nEnter the Second String:"); gets(b); if(strcmp(a,b)==0) { printf("\nTwo Strings are Equal"); } else { printf("\nTwo Strings are Not Equal"); } return 0; }To download raw file Click Here
Enter the First String: Tutor Joe's Enter the Second String: Tutor Joe's Two Strings are Equal
Learn All in Tamil © Designed & Developed By Tutor Joes