Your IP : 216.73.216.40


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

#include<stdio.h>
void main()
{
int x[4]={5,6,7,5},i,j,c=0;
 for(i=0;i<4;i++)
  {
    for(j=0;j<4;j++)
     {
    if(x[i]>x[j])
       {
       c=1;
       }
     }
  }
 if(c==1)
 printf("%d",x[i]);
}