123456789101112131415
#include <stdio.h> int main() { int y = 1; y = y << 7; printf("\nThe amount of y shifted 7 from amount of 1 is %d\n", y); return 0; }
12345678910111213141516
#include <stdio.h> int main() { int y = 1; y = y << 7; y -= 1; printf("\nThe amount of y shifted 7 from amount of 1 with a subtraction of 1 is %d\n", y); return 0; }