[ create a new paste ] login | about

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

C, pasted on Jul 21:
1
2
3
4
5
6
7
8
9
10
11
12
#include<stdio.h>
int main(){
 unsigned long set = 268304384UL;
 set >>= 1;
 printf(" set :%lu: \n", set);
 set = 268304384UL;

 set /= 2;
 printf(" set :%lu: \n", set);

 return 1; 
}


Output:
1
2
 set :134152192: 
 set :134152192: 


Create a new paste based on this one


Comments: