Your IP : 216.73.216.40


Current Path : /var/www/html/venkat/old/old/
Upload File :
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();
}