A custom implementation of the C standard library printf function.
- Build and Execute
- Usage
- Contributors
- Acknowledgments
- License
To install this project, follow these steps:
- Clone the repository to your local machine.
- Run the
make
command to compile the program. - Run the
printf
executable to use the program.
To use this program, follow these steps:
- Include the
main.h
header file in your program. - Call the
_printf
function with the desired format string and arguments.
Here's an example of how to use the _printf
function:
#include “main.h”
int main(void)
{
_printf(“Hello, %s!\n”, “world”);
return (0);
}
This will output:
Hello world
- Chimobi Ekwunife (@MrEkwunife)
- Kenechukwu Akubue (@kengoon)
This project is built on the foundation of the C programming language and the C standard library. We would like to thank the developers of C for creating such a powerful and versatile language.
We would also like to acknowledge ALX SE for providing us with the opportunity to work on this project and develop our skills as software engineers. Thank you for your support and guidance throughout this journey.
This project is licensed under the MIT License - see the LICENSE.md file for details