Multiple choice technology programming languages

What will be the output of the following code segment? #include #include void main() {     int a[]={0,1,2,3,4,5,6,7,8,9,10};     int i=0,num;     num=a[++i+a[++i]]+a[++i];     printf("%d",num); }

  1. 6

  2. 7

  3. 8

  4. 9

  5. CompilationError

Reveal answer Fill a bubble to check yourself
D Correct answer