...
This compliant solution explicily defines the return type of foo()
as unsigned int
.
Code Block | ||
---|---|---|
| ||
unsigned int foo(void) { return UINT_MAX; } int main(void) { long long c = foo(); printf("%lld\n", c); return 0; } |
...
...
This compliant solution explicily defines the return type of foo()
as unsigned int
.
Code Block | ||
---|---|---|
| ||
unsigned int foo(void) { return UINT_MAX; } int main(void) { long long c = foo(); printf("%lld\n", c); return 0; } |
...