Skip to content

HanzoK/ft_printf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

ft_printf

Project Overview

Reimplementation of the standard printf function in C.

The project focuses on variadic arguments, format parsing, and type-safe output.

Concepts Covered

  • va_list, va_start, va_arg
  • Format specifier parsing
  • Integer & hexadecimal conversion

Supported Conversions

%c %s %p %d %i %u %x %X %%

Build

make

Usage

ft_printf("Value: %d, Hex: %x\n", n, n);

What I learned

  • How printf works under the hood
  • Writing modular and extensible parsers

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors