Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 678 Bytes

File metadata and controls

14 lines (12 loc) · 678 Bytes

0x11. C - printf

A PROJECT TO CREATE PRINTF

  1. Write a function that produces output according to a format.
  2. Handle the following conversion specifiers.
  3. Use a local buffer of 1024 chars in order to call write as little as possible.
  4. Handle the following custom conversion specifier.
  5. Handle the following flag characters for non-custom conversion specifiers.
  6. Handle the following length modifiers for non-custom conversion specifiers
  7. Handle the field width for non-custom conversion specifiers.
  8. Handle the precision for non-custom conversion specifiers.
  9. Handle the following custom conversion specifier.
  10. All the above options work well together.