[ create a new paste ] login | about

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

C, pasted on Jun 21:
1
2
3
4
5
6
7
8
void main(void)
{
unsigned int a = 0xacbb00ff;
unsigned int b = a >> 32;
unsigned int c = a << 32;

printf("%F %F %F",a,b,c);
}


Output:
1
0.000000 0.000000 -0.049236


Create a new paste based on this one


Comments: