Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++ max function

#include <algorithm> // these two line of code should bw included
using namespace std;
class RandomClass
{
	int Functions(int a,int b)
	{
		return max(a,b);
	}
};
Source by www.cplusplus.com #
 
PREVIOUS NEXT
Tagged: #max #function
ADD COMMENT
Topic
Name
4+2 =