This project contains the function _printf which will take a string with zero or more directives and a variable number of arguments.
_printf("Hello, string %s!", "string");
// Output: Hello, string string!
_printf("Hello, char %c!", "a");
// Output: Hello, char a!
_printf("Hello, int %i!", 98);
// Output: Hello, int 98!- can print integers
- can print characters
- can read in and recognise different formats