Your IP : 216.73.216.40


Current Path : /var/www/html/venkat/old/
Upload File :
Current File : /var/www/html/venkat/old/iit2015116_2.c

#include <stdio.h>
#include <string.h>
void main()
{
	char * a;
	char * b;
	printf("enter the string a :\n");
	scanf("%s",a);
	printf("enter the string b :\n");
	scanf("%s",b);
	
	strcmp(a,b);
	a=b;
	printf("the similar characters in two strings :\n");
	printf("\n");
}