| Current Path : /var/www/html/venkat/old/old/ |
| Current File : /var/www/html/venkat/old/old/q2.c |
#include<stdio.h>
void main()
{
char x,y;
printf("Enter the two strings\n");
scanf("%s%s",&x,&y);
if(x==y)
{
printf("The similar characters in the string is %d",x);
}
else
printf("no similar characters");
getchar();
}