Write a function max_consecutive_integers() in C languageplease
(BONUS 10 pts) Write a function called max_consecutive_integers) that accepts a two-dimensional array of signed integers, the number of rows, the number of columns as input parameters, and two pointers as output parameters (one of these pointers is actually a pointer to a pointer, i.e. two stars!). The function finds the maximum consecutive sequence of one integer. The first pointer stores the address the start of the maximum consecutive sequence of the same integer.
OR
OR