C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Online C compiler to run C program online
#include <stdio.h>
//int a[5],i;
int main(){
int a[5],i;
for (i=0;i<5;i++){
a[i]=i*10;
}
printf("%d\n",i);
printf("%d\n",a[i-1]);
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run