#include <stdio.h> #include <stdint.h> uint8_t set_bit(uint8_t reg, uint8_t pos) { reg = reg | (1 << pos); return reg; } int main() { uint8_t reg, pos; scanf("%hhu %hhu", ®, &pos); // Accept register value and position uint8_t result = set_bit(reg, pos); printf("%u", result); // Output the result as an integer return 0; }
We can set a bit taking its logical OR with 1. To set a particular bit,
specified by the pos argument, we can left shift 1 by pos (1 << pos), and
then take the logical OR.
Test Cases
Test Results
Input
5 1
Expected Output
7