Your IP : 216.73.216.40


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

#include<stdio.h>

void main()
{
char s1[10], s2[10], s3[10];
int i,j;
char *sa=s1;
char *sb=s2;
printf(" Enter String One \n");
scanf("%s" ,sa);
printf(" Enter String Two \n");
scanf("%s" ,sb);
for(i=0;i<10;i++)
{
for(j=0;j<10;j++)
{
if(s1[i]==s2[j])
printf("%c" , s2[j]);
}
}
}