What is the output of the following code? int nums[3][3] =…
What is the output of the following code? int nums[3][3] = {{10, 20, 30}, {40, 50, 60}, {70, 80, 90}}; printf(“nums[1][2] = %d *(* (nums + 1) + 2) = %d\n”, nums[1][2], *(*(nums + 1) + 2));
Read Details