#include <stdio.h>
void main()
{
int numbers[] = {2, 5, 3, 2, 6, 8, 4, 9, 10, 8};
for (int i = 0; i < 10; i++) {
printf("Array index ke %d adalah %d\n", i, numbers[i]);
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: