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))?
int num[3][4]= { {3,6,9,12}, {15,25,30,35}, {66,77,88,99} };
A 3 B 15 C 66 D 6 E 25
+ AnswerB
+ Report