// Set bit at a position n #include #include #include uint32_t set_bit_position(int position, uint32_t value); int main(int argc, char *argv[]) { if (argc != 3) { fprintf(stderr, "Usage: %s \n", argv[0]); return 1; } int position = atoi(argv[1]); uint32_t value = atoi(argv[2]); printf("%u\n", set_bit_position(position, value)); return 0; } // given a position and a value, // returns the value with the bit at the position set to 1 uint32_t set_bit_position(int position, uint32_t value) { // PUT YOUR CODE HERE return 42; }