error: 'INT32_MAX' was not declared in this scope

后端 未结 7 1294
谎友^
谎友^ 2020-12-03 06:56

I\'m getting the error

error: \'INT32_MAX\' was not declared in this scope

But I have already included

#include 

        
相关标签:
7条回答
  • 2020-12-03 07:30
    #include <iostream>
    #include <limits.h> or <climits>
    

    worked for me

    0 讨论(0)
提交回复
热议问题