#include <stdio.h>
int main(void)
{
long long x = test();
printf("%lld\n", x);
return 1;
}
long long test()
{
return 1111111111111111111;
}
The output is 734294471 . If I replace the call to test() by a the number, the output is as I expect. I checked the value of x using a debugger and it wasn't set the to value returned by the function. What is going wrong?
I am using Visual Studio 2010 with the Visual C++ compiler.
<stdio.h>is not a C++ header - if for some reason you needed to use the C-style IO library in C++ code,#include <cstdio>instead. – Karl Knechtel Jan 24 '11 at 23:02