Call function in cout : cout « Console « C++
- C++
- Console
- cout
Call function in cout

#include <iostream>
using namespace std;
inline int max(int a, int b)
{
return a>b ? a : b;
}
int main()
{
cout << max(10, 20);
cout << " " << max(99, 88);
return 0;
}
Related examples in the same category