[ create a new paste ] login | about

Link: http://codepad.org/aPp8eYYd    [ raw code | output | fork ]

C++, pasted on Nov 23:
1
2
3
4
5
6
7
8
#include <limits>
#include <iostream>

int main(void) {
std::cout << std::numeric_limits<void *>::min() << std::endl;
std::cout << std::numeric_limits<void *>::max() << std::endl;
return 0;
}


Output:
1
2
0
0


Create a new paste based on this one


Comments: