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
- Discussions
Functions
Functions
Sort by
recency
|
1949 Discussions
|
Please Login in order to post a comment
int max_of_four(int a, int b, int c, int d)
{
}
int main()
{ int a, b, c, d;
}
Using ranged for loop
** int max_of_four(int a, int b, int c, int d){ if (a>b&&a>c&&a>d){ return a;
}
**