An open API service indexing awesome lists of open source software.

https://github.com/patilyashh/mathametical-tables-using-c


https://github.com/patilyashh/mathametical-tables-using-c

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Mathematical Tables Generator in C

## Overview
- This C program allows users to generate multiplication tables for a given number up to 10.

## Instructions

1. **Clone the Repository**
- Open your terminal and run the following commands:
```bash
git clone https://github.com/PATILYASHH/Mathametical-Tables-using-c.git
cd Mathametical-Tables-using-c
```

2. **Compile the Program**
- Compile the C program using the following command:
```bash
gcc multiplication_table.c -o multiplication_table
```

3. **Run the Program**
- Execute the compiled program:
```bash
./multiplication_table
```
- You will be prompted to enter a number. Input the desired number and press `Enter`.

- The program will display the multiplication table of the entered number up to 10.

## Example
- For example, if you enter `5`, the output will be:
```
Enter a number: 5
Table of 5 :
1*5 = 5
2*5 = 10
3*5 = 15
4*5 = 20
5*5 = 25
6*5 = 30
7*5 = 35
8*5 = 40
9*5 = 45
10*5 = 50
```

Feel free to reach out if you have any questions or issues!

**Author: PATILYASHH**

Repository URL: [https://github.com/PATILYASHH/Mathametical-Tables-using-c](https://github.com/PATILYASHH/Mathametical-Tables-using-c)