/** The result of rotating X left by 4 bits. To rotate left means
* that the 4 most significant bits become the 4 least significant
* and all other bits move left by 4. For example,
* rotl4(0x12345678) is 0x23456781. */
int rotl4(int x) {
return ;
}
I am trying to figure out how to shift the 4 most significant bits but I am not sure on how would you rotate them to the end -Thanks