Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 591 Bytes

README.md

File metadata and controls

19 lines (18 loc) · 591 Bytes

0X11. C - PRINTF

Tasks

  1. A function that produces output according to a format
  2. Handles the following (d, i)
  3. Handles the custom conversion (b)
  4. Handles the following (u, o, x, X)
  5. Uses a local buffer of 1024
  6. Handles the custom conversion (S)
  7. Handles the following conversion (p)
  8. Handles the following flags (+, ' ', #)
  9. Handles length modifiers (l, h)
  10. Handles the field width
  11. Handles the precision
  12. Handles the 0 flag
  13. Handles the - flag
  14. Handles the the custom conversion (r)
  15. Handles the custom conversion (R)
  16. All the above works together