Skip to main content

problem on function

 


#include<stdio.h>
int sum;
int max_of_four(int a,int b,int c,int d)
{
  if(a>b&&a>c&&a>d)
  {
      sum=a;
  }
  if(b>a&&b>c&&b>d)
  {
      sum=b;
  }
  if(c>b&&c>a&&c>d)
  {
      sum=c;
  }
  if(d>b&&d>c&&d>a)
{
    sum=d;
}
return sum;
}
int main()
{
    int p,q,r,s;
    scanf("%d%d%d%d",&p,&q,&r,&s);
    printf("%d",max_of_four(p,q,r,s));
}

Comments

Popular posts from this blog

example of typecasting in c

/*Type Casting in C Typecasting allows us to convert one data type into other. */ //simple example to cast int value into the float. #include <stdio.h>    int   main (){   float   f = ( float ) 9 / 4 ;     printf ( "f : %f \n " ,  f  );     return   0 ;   }