ammarelbadry1 / printf

Implementing a function similar to the printf function from C standard library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Printf Project

Introduction

This project aims to implement a function that takes in some input and print formatted output, providing similar functionality to the printf function in the C programming language.

Project objectives

  • Function behavior should be like printf from the standard library. => { The Main Goal }
  • Management of variable arguments.
  • Resolve format specifiers. => ex. %c, %s, %d, %f, ..etc
  • Format specifiers matching and type conversion.
  • Error handling.

Project scope

Handling c, s, d, i, % format specifiers .. just for now

About

Implementing a function similar to the printf function from C standard library.


Languages

Language:C 100.0%