This project, a custom version of the printf
function, was developed by Solomon Kassa and Antipas Belihu. It aims to provide a learning experience while offering a unique approach to the standard printf functionality.
The custom _printf
function is designed for educational purposes, providing insights into the inner workings of the printf function. It's built with a focus on clarity, modularity, and a deep understanding of C programming concepts.
- Custom implementation of the
printf
function. - Supports various format specifiers.
- Designed for learning purposes.
- C compiler (GCC recommended)
Clone the repository to your local machine:
git clone https://github.com/solomonmulu/printf-project.git
#include "main.h"
int main() {
_printf("Hello, %s!\n", "World");
return 0;
}
Contributions are welcome! If you'd like to contribute to this project, please follow the Contributing Guidelines.
This project uses the built-in GitHub workflow for issue tracking and version control. Feel free to submit issues, propose new features, or contribute through pull requests.
Visit our Issue Tracker to report bugs, suggest enhancements, or discuss ideas.
- Fork the project.
- Create a branch (git checkout -b feature/awesome-feature).
- Commit your changes (git commit -am 'Add awesome feature').
- Push to the branch (git push origin feature/awesome-feature).
- Open a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.