[ create a new paste ] login | about

Link: http://codepad.org/p11uComp    [ raw code | output | fork ]

C++, pasted on Oct 10:
1
2
3
4
5
6
7
#include <iostream>

int main()
{
    for ( int i = 2147483641, k = 0; k < 15; ++i, ++k )
        std::cout << i << std::endl;
}


Output:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2147483641
2147483642
2147483643
2147483644
2147483645
2147483646
2147483647
-2147483648
-2147483647
-2147483646
-2147483645
-2147483644
-2147483643
-2147483642
-2147483641


Create a new paste based on this one


Comments: