#include <stdio.h>
int main() {
int arr[10];
for (int i=0; i<10;i++)
{
arr[i]=5*(i+1);
}
for(int i=0; i<10; i++)
{
printf("the value of 5 X %d=%d\n",i+1,arr[i]);
}
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: