10 lines
82 B
C
10 lines
82 B
C
|
foo (x, c)
|
||
|
{
|
||
|
return x << -c;
|
||
|
}
|
||
|
|
||
|
main ()
|
||
|
{
|
||
|
printf ("%x\n", foo (0xf05, -4));
|
||
|
}
|