https://github.com/michaelprocha/multiplication-table-simulator
multiplication table simulator in c in the terminal
https://github.com/michaelprocha/multiplication-table-simulator
Last synced: 3 months ago
JSON representation
multiplication table simulator in c in the terminal
- Host: GitHub
- URL: https://github.com/michaelprocha/multiplication-table-simulator
- Owner: michaelprocha
- License: mit
- Created: 2025-07-10T14:04:42.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-10T15:19:56.000Z (12 months ago)
- Last Synced: 2025-07-10T21:52:42.365Z (12 months ago)
- Language: C
- Size: 22.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Multiplication Table in Terminal C
This is a simple program developed in C language that displays the multiplication table of a number, multiplying it from 1 to 10.
The program prompts the user for an integer and prints the multiplication table of that number to the terminal.
---
## 📘 Usage example
```
----- Multiplication Table -----
Enter a number: 2
2 x 1 = 2
2 x 2 = 4
...
2 x 10 = 20
```
---
## 🔖 Features
- Type a number and the multiplication table of the number will be displayed.
---
## 📌 Requirements
C compiler (like GCC)
---
## 📦 How to compile and run
### How to compile: Linux / Mac / Git Bash / Windows:
```bash
gcc functions.c main.c -o main
```
### How to run: Linux / Mac / Git Bash:
```bash
./main
```
### How to run: Windows (CMD ou PowerShell):
```cmd
main.exe
```
---
## 📄 License
This project is licensed under the MIT License. See the LICENSE file for more details.
---
## 👨💻 Author
Made by Michael Rocha