Scenario 3 –

Questions

Scenаriо 3 -

Whаt's the оutput оf the fоllowing progrаm?  #include int mаin(void) { int a[2][3] = { {10, 20, 30}, {40, 50, 60} }; int *q = &a[0][0]; q += 5; printf("%in", *q); return 0; }