Skip to content

Jenni-Foued/printf

Repository files navigation

printf

alt text

Description

_printf is a custom implementation of C printf program function . It produces an output according to format described. It writes output in stdout (standard output stream).

Usage

String

  • Input: _printf("%s\n", 'Awesome, isn't it?');
  • Output: Awesome, isn't it?

Character

  • Input: _printf("Just a char %c\n", 'F');
  • Output: Just a char F

Integer

  • Input: _printf("Here we number %i\n", 23);
  • Output: Here we have number 23

Decimal:

  • Input: _printf("%d\n", 1000);
  • Output: 1000

Authors

Med Foued Jenni Github URL
Hadir Jenny Github URL

About

Creating my own printf function.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages