A simple yet interactive C program where you can:
- Choose how many times you want to run the program.
- Enter the number for which you want to see the multiplication table.
Perfect for beginners practicing loops, user input, and control flow in C.
- β Run multiple times without restarting the program
- β Generate multiplication table of any number
- β Beginner-friendly code
- β Clean and simple output format
βοΈ How to Run
1οΈβ£ Clone the Repository
git clone https://github.com/your-username/multiplication-table-c.git
cd multiplication-table-c
2οΈβ£ Compile the Code
gcc table.c -o table
3οΈβ£ Run the Program
./table
π Example Output
How many times you want to run the program: 2
Enter the number for table: 5
5 x 1 = 5
5 x 2 = 10
...
5 x 10 = 50
Enter the number for table: 7
7 x 1 = 7
...
7 x 10 = 70