Scenario 3 – Questions Scenаriо 3 - Show Answer Hide Answer 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; } Show Answer Hide Answer