/printf

Group project

Primary LanguageC

0x11. C - printf

Description

_printf() function replicates the C standard library printf() function

Objectives

  • Using git in a team setting
  • Applying variadic functions to larger projects
  • The complexies of printf

Prototype

int _printf(const char *format, ...);

Tasks

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

  • Write a function that produces output according to format
    • c: converts input into a character
    • s: converts input into a string
    • %: prints percentage sign

1. Education is when you read the fine print. Experience is what you get if you don't

  • Handle the following conversion specifiers
    • d: converts input into a base 10 integer
    • i: converts input into an integer

2. Just because it's in print doesn't mean it's the gospel

  • Create a man page for your function

Authors