https://github.com/patilyashh/mathametical-tables-using-c
https://github.com/patilyashh/mathametical-tables-using-c
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/patilyashh/mathametical-tables-using-c
- Owner: PATILYASHH
- Created: 2024-01-22T15:37:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-22T16:32:37.000Z (over 2 years ago)
- Last Synced: 2025-01-13T03:33:21.044Z (over 1 year ago)
- Language: C
- Size: 85 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)