Vinicius Oliveira

42 Printf

A C standard library printf function implementation.

École 422021
CUnixLibrary

Third project carried out at École 42, its goal is to implement the printf function from the C standard library.

The printf function is a function that prints a formatted message to the standard output.

main.c
#include "ft_printf.h"
 
int	main(void)
{
	char	*subject;
 
	subject = "World"
	ft_printf("Hello, %s!\n", subject);
	// Output: Hello, World!
	return (0);
}