Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 597 Bytes

File metadata and controls

16 lines (11 loc) · 597 Bytes

_printf

README file for _printf()

Prints a string with specified formatting, a recreation of the ubiquitous printf() function.

Within this repository are all the files necessary for the function to work, each file contains at most five functions. In addition to the function files and the README, there is also a header file containing prototypes, and a manual page file.

examples

_printf("hello");

hello

_printf("here is a number: %i", 1234);

here is a number: 1234

_printf("here is a string: %s and a character: %c", "hi", 'c');

here is a string: hi and a character: c