Objective
Implement a function that receives an unsigned byte and outputs its eight-bit binary representation, MSB first, with no trailing newline.
Steps
$ show_bits(1)
00000001
$ show_bits(200)
11001000
Expected files
Allowed functions

Objective
Implement a function that receives an unsigned byte and outputs its eight-bit binary representation, MSB first, with no trailing newline.
Steps
$ show_bits(1)
00000001
$ show_bits(200)
11001000
Expected files
Allowed functions

Tests
Run the tests to grade your code