Skip to content

This repository provides a C implementation that reproduces the behavior of the printf function, demonstrating custom formatting and output handling.

Notifications You must be signed in to change notification settings

Namorgha/Ft_printf

Repository files navigation

print-variables


ft_printf

ft_printf is a custom implementation of the printf function in C, developed as part of the 42 Network curriculum. This project aims to recreate the functionality of printf to handle various format specifiers and conversion types.


Features

  • Implementation of printf function with support for various format specifiers
  • Custom handling for different data types
  • Extension to support additional format specifiers not included in the standard library

Supported Format Specifiers

ft_printf supports the following format specifiers:

  • %c - Character
  • %s - String
  • %p - Pointer
  • %d - Decimal (integer)
  • %i - Integer
  • %u - Unsigned integer
  • %x - Unsigned hexadecimal (lowercase)
  • %X - Unsigned hexadecimal (uppercase)
  • %% - Literal percent sign

About

This repository provides a C implementation that reproduces the behavior of the printf function, demonstrating custom formatting and output handling.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published