Paul-Bett / printf

First Collaborative Project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Task 0 :I'm not going anywhere. You can print that wherever you want to. I'm here and I'm a Spur for life

  1. Write a function that produces output according to a format.
  2. Prototype: int _printf(const char *format, ...);
  3. Returns: the number of characters printed (excluding the null byte used to end output to strings)
  4. write output to stdout, the standard output stream
  5. format is a character string. The format string is composed of zero or more directives. See man 3 printf for more detail. You need to handle the following conversion specifiers: c s %
  6. You don’t have to reproduce the buffer handling of the C library printf function
  7. You don’t have to handle the flag characters
  8. You don’t have to handle field width
  9. You don’t have to handle precision
  10. You don’t have to handle the length modifiers

Collaborators: Paul Bett | @Paul-Bett Stephanie Masika |@MasikaII

About

First Collaborative Project


Languages

Language:C 100.0%