Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
User Journal

Journal General Wesc's Journal: Three large numbers 1

I'm looking for three large numbers that will add up to ten via overflow. I'm not sure how large the integers (or maybe even floats) are, so it may take some trial and error.
This discussion has been archived. No new comments can be posted.

Three large numbers

Comments Filter:
  • by Stavr0 ( 35032 )
    void main()
    {
    const unsigned long A = 1431655771;
    const unsigned long B = 1431655768;
    const unsigned long C = 1431655767;

    unsigned long ten;

    ten = a + b + c;

    printf("%lu",ten);
    }

2.4 statute miles of surgical tubing at Yale U. = 1 I.V.League

Working...