First Holberton School group project in the Low Level Programming track.
int _printf(const char *format, ...);
| Specifier type | Description |
|---|---|
| c | Single character |
| s | String of characters |
| d or i | Signed decimal integer |
| b | Unsigned binary |
| u | Unsigned decimal integer |
| o | Unsigned octal |
We compiled via:
$ gcc -Wall -Werror -Wextra -pedantic *.c
We also have some tests in the tests folder. Feel free to suggest more.
Fernando González-Morales, Stefan Silverio