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
|
862 Discussions
|
Please Login in order to post a comment
include
int main() { int a, b, c, d, max;
printf("Enter four integers: "); scanf("%d %d %d %d", &a, &b, &c, &d);
max = a;
if (b > max) max = b; if (c > max) max = c; if (d > max) max = d;
printf("Maximum = %d", max);
return 0;
include
int main() { int a, b, c, d, max;
}
My solution in C:
Function in C.
Here is my Solution of the problem :