[ create a new paste ] login | about

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

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

void main()
{
    int minusdreizehn = -13;

    printf("division: %d  shift: %d",minusdreizehn/4,minusdreizehn>>2);
}


Output:
1
division: -3  shift: -4


Create a new paste based on this one


Comments: