Objective
Write a program that converts a non-negative decimal integer to its lowercase hexadecimal representation.
Steps
$ ./print_hex 31
1f
$ ./print_hex 200
c8
$ ./print_hex 3735928559
deadbeef
Expected files
Allowed functions

Objective
Write a program that converts a non-negative decimal integer to its lowercase hexadecimal representation.
Steps
$ ./print_hex 31
1f
$ ./print_hex 200
c8
$ ./print_hex 3735928559
deadbeef
Expected files
Allowed functions

Tests
Run the tests to grade your code