@Prags: Pseudocode:

If either number is zero, the sum will not overflow.
If the numbers have different signs, the sum will not overflow.
If both numbers are positive, overflow will occur if maxint - a >= b.
If both numbers are negative, overflow will occur if maxint + a >= -b.

Dave

On Aug 27, 8:58 am, Prags <[email protected]> wrote:
> Two numbers are given as input check if their sum will be overflow or not ??
> Give a successfull running code for it.

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to