Computer Science, asked by vivekchawan1234, 7 months ago

1.What will be the output of the following code:- int a[]=(1,3,5,7,9,11}; int i=3; i--; a[i--]=a[--i]; for(i=1;i<a.length;++i) System.out.print(a[i]+" ");​

Answers

Answered by Kaushikkalesh
0

Output - "3 5 7 9 11"

Note - " " are not part of the output

Please Thank Me

And Mark this as Brainliest

Similar questions