fork download
  1. #include <stdio.h>
  2.  
  3. unsigned char rol(unsigned char x, int n)
  4. {
  5. return (x << n) | (x >> (8-n));
  6. }
  7.  
  8. int main(void) {
  9.  
  10. printf("%d\n",rol(130,1));
  11.  
  12. }
  13.  
Success #stdin #stdout 0s 4388KB
stdin
Standard input is empty
stdout
5