#include < stdlib.h>
#include < iostream>
#include < limits>
using namespace std;
int main(int argc, char** argv) {
// Print the long max value
// 64 bit machine this prints -> 9223372036854775807
// 32 bit machine this prints -> 2147483647
cout << "Max value for long : " << numeric_limits
return (EXIT_SUCCESS);
}
No comments:
Post a Comment