#include <stdio.h>
int main()
{
int n1,n2,n3;
scanf("%d %d %d",&n1,&n2,&n3);
int arr[3][10];
int mul[] = {2, 7, 9};
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 10; j++)
{
arr[i][j] = mul[i] * (j + 1);
}
}
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 10; j++)
{
printf("The value of arr[i][j] is %d\n", arr[i][j]);
}
printf("\n");
}
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: