kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

6_5_43_signed_rshift.c (71B)


      1 int test_main(void) {
      2   int x = -256;
      3   return (int)((x >> 4) + 58);
      4 }