Functions in C

Sort by

recency

|

819 Discussions

|

  • + 0 comments

    Can i use this code for the improvement of my website?

  • + 0 comments

    int max_of_four(int a,int b,int c,int d) { int max1,max2;

    max1=a>b ? a: b;
    
    max2=c>d ? c: d;
    
    return  max1>max2 ? max1: max2;
    

    }

  • + 0 comments

    int max_of_four(int a, int b, int c, int d) { int greatest = a; if(b>greatest) { greatest = b; } if(c>greatest) { greatest = c; } if(d>greatest) { greatest = d; } return greatest;

    }

  • + 0 comments

    include

    /* Add int max_of_four(int a, int b, int c, int d) here. */

    int main() { int a, b, c, d; scanf("%d %d %d %d", &a, &b, &c, &d); int max_of_four(); int ans = max_of_four(a, b, c, d); printf("%d", ans);

    return 0;
    

    } int max_of_four(int a,int b,int c,int d){ int max; max=(a>b)?((a>c)?((a>d)?a:d):((c>d)?c:d)):((b>c)?((b>d)?b:d):((c>d)?c:d)); return max; }

    
    
  • + 0 comments
    #include <stdio.h>
    int max_of_four(int a, int b, int c, int d){
        int max1 = (a > b)? a : b ;
        int max2 = (c > d)? c : d ;
        int finalmax = (max1 > max2)? max1 : max2 ;
        return finalmax ;
        
    }
    int main() {
        int a, b, c, d;
        scanf("%d %d %d %d", &a, &b, &c, &d);
        int ans = max_of_four(a, b, c, d);
        printf("%d", ans);
        
        return 0;
    }