Skip to content

Latest commit

Β 

History

History
77 lines (56 loc) Β· 2.41 KB

README.md

File metadata and controls

77 lines (56 loc) Β· 2.41 KB

Printf Project

GitHub License Language Last Commit

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.

Table of Contents

Introduction

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.

Features

  • Custom implementation of the printf function.
  • Supports various format specifiers.
  • Designed for learning purposes.

Getting Started

Prerequisites

  • C compiler (GCC recommended)

Installation

Clone the repository to your local machine:

git clone https://github.com/solomonmulu/printf-project.git

Usage

#include "main.h"

int main() {
    _printf("Hello, %s!\n", "World");
    return 0;
}

Contributing

Contributions are welcome! If you'd like to contribute to this project, please follow the Contributing Guidelines.

Workflow

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.

Issue Tracker

Visit our Issue Tracker to report bugs, suggest enhancements, or discuss ideas.

Pull Requests

  1. Fork the project.
  2. Create a branch (git checkout -b feature/awesome-feature).
  3. Commit your changes (git commit -am 'Add awesome feature').
  4. Push to the branch (git push origin feature/awesome-feature).
  5. Open a Pull Request.

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details.