What is the value of y after the following code is executed int [] a ={0,4,2,1,7,18}; int y=0; for(int i=0;i<a.length;i++) y=a[i]+2%2
Answers
Answered by
0
Answer:
The output of this program will be 0
Similar questions