Your IP : 216.73.216.40


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

#include<stdio.h>
#include<string.h>
void main()
{
 char x[10]="hello",y[10]="world";
 int i,j,c=0;
  for(i=0;x[i]!='\0';i++)
    {
     for(j=0;y[j]!='\0';j++)
       {
        if(strcmp(x[i],y[j])=0)
        {
        c=1;
        }
       if(c==1)
      printf("%c",x[i]);
       }
   }
}