100% C prog for comparing whether two strings are equal or not
#include<stdio.h>
#include<string.h>
void main()
{
int i;
char name1[11],name2[11]; // we assume max length of the names is 11
printf("\n enter a name:');
gets(name1); //scanf పెడితే ..పేరు మధ్యలో ఖాళీ వుంటే మొదటి పదం వరకే తీసుకొనును
printf("\n enter another name:");
gets(name2);
i=strcmp(name1,name2);
if (i==0)
printf("\n both names are same");
else
printf("\n both names are different");
}
తెరమీద ఇలా
enter a name:bharat
enter another name:bharat
both names are same
enter a name:bhArat
enter another name:bharat
both names are different
enter a name:ambA vANi
enter another name:ambA vANi
both names are same
మీరు కూడా వివిధ inputs కి outputs ఎలా వస్తాయో వ్రాయాల్సి వుంటుంది
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.