Question: 3- Write the necessary codes starting from the dashed lines below for the given C program which finds the maximum number in the given two
3- Write the necessary codes starting from the dashed lines below for the given C program which finds the maximum number in the given two dimensional array using ptr.
#include
int main(void) {
int num[3][4] = {
{10, 2, 3, 4},
{75, 46, 7, 108},
{9, 1, 11, 12}
};
int *ptr = &num[0][0];
--------------------------------
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
