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 ఎలా వస్తాయో వ్రాయాల్సి వుంటుంది


కామెంట్‌లు

ఈ బ్లాగ్ నుండి ప్రసిద్ధ పోస్ట్‌లు

100% C prog to write content into a file and then read it back onto the console

Spic macay

శ్రీరస్తు.. రామలింగ 18-1-24 (సూరసాని వారి ఆహ్వానము)