Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 976 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 976 Bytes

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