We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C
- Introduction
- Functions in C
- Discussions
Functions in C
Functions in C
Sort by
recency
|
819 Discussions
|
Please Login in order to post a comment
Can i use this code for the improvement of my website?
int max_of_four(int a,int b,int c,int d) { int max1,max2;
}
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;
}
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);
} 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; }