05 February 2022

Multiplication Table Using Array

 QUESTION : 

Write a program to create an array of 10 integers and store a multiplication table of 5.

#include<stdio.h>
 
int main()
{
    int mult[10];
    for(int i=0; i<10; i++){
        mult[i] = 5 * (i+1);  
    }
 
    for(int i=0; i<10; i++){
        printf("5 x %d = %d\n", (i+1), mult[i]);  
    }
return 0;
}

OUTPUT-->

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

No comments:

Post a Comment