RobbyMil / printf

This repo contains all the codes used to create our custom printf function in C from scratch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

0x11. C - printf

Authors: Robby Milambo, Sibusiso Shinga

_printf()

In this project, we recreated a mini-verison of the printf function found in
the stdio.h library in the C programming language. This function allows
us to print any argument given to the standard output or terminal and similar
printing functions can be found in any programming language. This means we can
print any combinations of strings, intergers, and other different data types.

Synopsis

This repository holds all the code necessary for our custom _printf
function to run. This mini-version currently handles conversion specifiers:
c, s, %, d, i, b, o

About

This repo contains all the codes used to create our custom printf function in C from scratch


Languages

Language:C 100.0%