8. Hexadecimal
Write a program that prints all the numbers of base 16 in lowercase, followed by a new line.
You can only use the putchar function (every other function (printf, puts, etc…) is forbidden)
All your code should be in the main function
You can only use putchar three times in your code
julien@ubuntu:~/0x01$ gcc -Wall -pedantic -Werror -Wextra -std=gnu89 8-print_base16.c -o 8-print_base16 julien@ubuntu:~/0x01$ ./8-print_base16 0123456789abcdef julien@ubuntu:~/0x01$