DESCRIPTION
_printf It is a function in charge of printing different types of formats, for example char, int, string
EXAMPLES
print a string
#include "holberton.h"
int main()
{
char *var = "hello";
return (_printf("%s", var));
print a char
#include "holberton.h"
int main()
{
char *var = 'H';
return (_printf("%c", var));
}
AUTORS
- Felipe Cubillos and Danny Martinez
