0
votes
3answers
160 views
How to detect overflow when subtracting two signed 32 bit numbers in C?
I've got two signed integers, and i'd like to subtract them. I need to know if it overflowed.
int one;
int two;
int result = two-one;
if (OVERFLOW) {
printf("overflow");
} el …
2
votes
2answers
289 views
Overflow In c
Hi,
I have a doubt
When two 16 bit values are added with max values, will there be overflow in the 16 bit machines?
I will elaborate
unsigned short a;
unsigned short b;
unsigne …
4
votes
4answers
238 views
C integer overflow behaviour when assigning to larger-width integers
If I execute the following code in C:
#include <stdint.h>
uint16_t a = 4000;
uint16_t b = 8000;
int32_t c = a - b;
printf("%d", c);
It correctly prints '-4000' as the r …
5
votes
8answers
841 views
How to handle arbitrarily large integers
I'm working on a programming language, and today I got the point where I could compile the factorial function(recursive), however due to the maximum size of an integer the largest …
26
votes
17answers
4k views
Best way to detect integer overflow in C/C++
I was writing a program in C++ to find all solutions of a^b = c (a to the power of b), where a, b and c together use all the digits 0-9 exactly once. The program looped over values …
11
votes
8answers
727 views
Why don’t languages raise errors on integer overflow by default?
In several modern programming languages (including C++, Java, and C#), the language allows integer overflow to occur at runtime without raising any kind of error condition.
For ex …
3
votes
7answers
424 views
C++ Template for safe integer casts
I am trying to write a C++ template function that will throw a runtime exception on integer overflow in casts between different integral types, with different widths, and possible …
2
votes
1answer
225 views
Catching overflow of left shift of constant 1 using compiler warning?
We're writing code inside the Linux kernel so, try as I might, I wasn't able to get PC-Lint/Flexelint working on Linux kernel code. Just too many built-in symbols etc. But that's a …
2
votes
0answers
197 views
Is the twitpocalypse real? [closed]
Will the 32bit signed integer used for Twitter cause a real problem when they roll past 2,147,483,647 unique IDs? How easy/hard will this fix be? What might it involve? Just cur …
3
votes
2answers
148 views
Why do my .net Int64’s behaves as if they were Int32’s ?
I'm witnessing a strange behavior in a .net program :
Console.WriteLine(Int64.MaxValue.ToString());
// displays 9223372036854775807, which is 2^63-1, as expected
Int64 a = 256*25 …
9
votes
6answers
517 views
Should I use unsigned integers for count members?
I just spent an hour tracking an integer overflow in my code, so I decided to share that -most people on here will know that of course, but perhaps I can save someone some time. So …
3
votes
5answers
615 views
32bit int * 32bit int = 64 bit int?
In other words does this work as expected?
int32 i = INT_MAX-1;
int64 j = i * i;
or do I need to cast the i to 64 bit first?
2
votes
2answers
145 views
Why does this integer overflow occur?
I've wrapped a dll method that has an integer as an out parameter in a web service.
In testing I was finding that when I was expecting -1 I was getting 65,535 instead. I realised t …
4
votes
11answers
537 views
Java multiply operation behavior
I wrote a method to convert a given number from days to milliseconds:
private long expireTimeInMilliseconds;
...
public void setExpireTimeInDays(int expireTimeInDays)
{
expireT …
1
vote
5answers
974 views
Force PHP integer overflow.
We have some integer arithmetic which for historical reasons has to work the same on PHP as it does in a few statically typed languages. Since we last upgraded PHP the behavior fo …
