Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 572 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 572 Bytes

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