#include <stdio.h>
int main(){
int array1[10]={1,2,3,4,5,6,5,4,3,2};
int array2[10]={10,20,30,40,50,60,70,80,90,100};
for (int i=0; i<10; i++){
printf("Array1 %d before the increment is %d ", i, array1[i]);
printf("Array2 %d before the increment is %d\n", i, array2[i]);
array1[i]++;
array2[i]++;
}
printf("\n");
printf("Array1 %d after the increment is %d ", i, array1[i]);
printf("Array2 %d after the increment is %d\n", i, array2[i]);
return 0;
gcc