Your IP : 216.73.216.40


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

#include<stdio.h>


void main()
{	char *c[200],*d[200];
	printf("enter the first string\n");
	gets(c);
	printf("enter the second string\n");
	gets(d);
	strcmp(c,d);
	{
	if(strcmp(c,d)==0)
	{
	
	printf("%s",c);
	}
	else
	{
	strcat(c,d);
	printf("%s",c);
	}
	}
	
}