please write a c prgram code 1 Write an appropriate declarat
please write a \"c\" prgram code
1. Write an appropriate declaration for each of the following situations involving pointers (a) Declare a function that accepts an argument which is a pointer to an integer quantity and returns a character. (b) Declare a function that accepts an argument which is an integer array and returns a character.Solution
Function declaration in c here
(a) char fun_name(int *ponter);
(b)char fun_name(int array[ ]);
here char is used for charcter return type
