Objective
Implement a function that writes a single byte to standard output and returns it.
Steps
$ putchar('z')
z
$ putchar('\n')
Expected files
Allowed functions
Allowed headers
Standard C library
Implements the contract of a function from the standard C library.

Objective
Implement a function that writes a single byte to standard output and returns it.
Steps
$ putchar('z')
z
$ putchar('\n')
Expected files
Allowed functions
Allowed headers
Standard C library
Implements the contract of a function from the standard C library.

Tests
Run the tests to grade your code