#include <stdio.h> #include <stdint.h> // Define macros here #define SETB_ENABLE(x) (x & 1) #define SETB_MODE(x) ((x & 0x03) << 1) #define SETB_SPEED(x) ((x & 0x07) << 3) uint16_t build_register(uint8_t enable, uint8_t mode, uint8_t speed) { // Use macros to set fields uint16_t reg = 0; reg = SETB_ENABLE(enable) + SETB_MODE(mode) + SETB_SPEED(speed); return reg; } int main() { uint8_t enable, mode, speed; scanf("%hhu %hhu %hhu", &enable, &mode, &speed); uint16_t reg = build_register(enable, mode, speed); printf("%u", reg); return 0; }
Test Cases
Test Results
Input
1 2 4
Expected Output
37