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

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

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