Question:Given the array:int num[3][4]= { {3,6,9,12}, {15,25,30,35}, {66,77,88,99} }; what would be the output of *(*(num+1)+1)+1?
int num[3][4]= { {3,6,9,12}, {15,25,30,35}, {66,77,88,99} };
A 3 B 15 C 26 D 66 E 77
+ AnswerC
+ Report