Find the value of A[1] after execution of the following program.int[] A = {0,2,4,1,3}; for(int i = 0; i < a.length; i++){ a[i] = a[(a[i] + 3) % a.length]; }#include<stdio.h>#define CUBE(x) (x*x*x)int main(){int a, b=3;a = CUBE(b++);printf("%d, %d\n", a, b);return 0;}