#include <limits>
int imin = std::numeric_limits<int>::min(); // minimum value
int imax = std::numeric_limits<int>::max(); // maximum value (2147483647)
#include <climits>
INT_MAX // 2147483647
int INT_MAX = 2147483647;
#include<algorithm>
using namespace std;
int main(){
int exa=8;
int exa2=20;
max=max(exa,exa2);
}
2147483647
unsigned long long int = 18 446 744 073 709 551 615
// max example
#include <iostream> // std::cout
#include <algorithm> // std::max
int main () {
std::cout << "max(1,2)==" << std::max(1,2) << '
';
std::cout << "max(2,1)==" << std::max(2,1) << '
';
std::cout << "max('a','z')==" << std::max('a','z') << '
';
std::cout << "max(3.14,2.73)==" << std::max(3.14,2.73) << '
';
return 0;
}
int i=INT_MAX;
#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);
}
};
Code Example |
---|
Cpp :: c++ cstring to string |
Cpp :: print a string with printf in c++ |
Cpp :: how to find the size of a character array in c++ |
Cpp :: factorial function c++ |
Cpp :: string to upper c++ |
Cpp :: even and odd sum in c++ |
Cpp :: sort a vector c++ |
Cpp :: convert letters to uppercase in c++ |
Cpp :: sorting using comparator in c++ |
Cpp :: How to create files in C++ |
Cpp :: how to search in array c++ |
Cpp :: c++ min int |
Cpp :: c++ progress bar |
Cpp :: getline(cin string) not working |
Cpp :: how to delete a node c++ |
Cpp :: power function c++ |
Cpp :: c ifdef |
Cpp :: intersection.cpp |
Cpp :: macros in c++ |
Cpp :: mac emoji shortcut |
Cpp :: vector c++ |
Cpp :: c++ loop through list |
Cpp :: vector of vectors of pairs c++ |
Cpp :: system("pause") note working c++ |
Cpp :: accumulate vector c++ |
Cpp :: opencv c++ feature detection |
Cpp :: int max in c++ |
Cpp :: text color c++ |
Cpp :: c++ variable type |
Cpp :: rethrow exception c++ |