C Program for loop: "Multiplication table of number using for loop" with output
#include <stdio.h>
int main() { int number; // Prompt the user for the number printf("Enter a number: "); scanf("%d", &number); // Display the multiplication table printf("Multiplication Table for %d:\n", number); for (int i = 1; i <= 10; i++) { printf("%d x %d = %d\n", number, i, number * i); } return 0; }Enter a number: 5
Multiplication Table for 5:
5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
5 x 4 = 20
5 x 5 = 25
5 x 6 = 30
5 x 7 = 35
5 x 8 = 40
5 x 9 = 45
5 x 10 = 50
Comments
Post a Comment