aşağıdaki C kodu ile -77777777 çıktısını aldım
#include <stdio.h>

int main()
{
int c=11111111;
c= c - (c<< 3) ;
printf("%d", (int) c) ;

return 0;
}