mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
11 lines
235 B
C++
11 lines
235 B
C++
#include <iostream>
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
//cout << strtol("+123999999999999999999", NULL, 10) <<endl;
|
|
//cout <<errno <<endl;
|
|
cout << strtol("+9223372036854775807", NULL, 10) <<endl;
|
|
cout <<errno <<endl;
|
|
}
|