[ create a new paste ] login | about

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

C, pasted on Jun 21:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

int main()
{
    unsigned x = 1;
    unsigned y = x >> 32;
    printf("%d\n%d", x, y);

    return 0;
}


Output:
1
2
1
0


Create a new paste based on this one


Comments: