#include #include #include int main(int argc, char ** argv){ srandom((long int)&argc); long x = random(); printf("x = %ld (%lx), size of long: %d\n", x, x, sizeof(x)); long y = x; asm("" : "=r"(x)); // Fill this out so you win! (mask, shift everything off to the left, mod by 256, etc.) if(((char)y != (char)x) && (x > 256)) printf("You win!\n"); else printf("You haven't won yet\n"); return 0; }