fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define __STDC_LIMIT_MACROS
  5. #include <stdint.h>
  6.  
  7. int main() {
  8. cout << "Max is: " << INT32_MAX << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
Max is: 2147483647