#include <stdio.h> #include <stdint.h> uint8_t is_bit_set(uint8_t reg, uint8_t pos) { uint8_t test = 1; test = reg & (test << pos); if(test != 0) return 1; else return 0; // Your code here } int main() { uint8_t reg, pos; scanf("%hhu %hhu", ®, &pos); printf("%u", is_bit_set(reg, pos)); return 0; }
Test Cases
Test Results
Input
4 2
Expected Output
1