Question: Given a program as shown above, answer the following questions #include 2. 3 void processi(int, int); int process2(int, int *); 4 5 6 7 8
Given a program as shown above, answer the following questions #include 2. 3 void processi(int, int); int process2(int, int *); 4 5 6 7 8 9 int main() { intx=3, y=5, z: processi(x,y); printf(" %d",x); z= process2(y, &x); printf(" %d, %d %d", z, x, y); 10 11 12 13 14 3 15 16 void processi(int m, int n) { 17 18 m+n: 17 { 18 19 m= m + n; printf(" %d", m); return; 20 21] 22 23 int process(int p, int *a) 24 { 25 *q = *q + 3; 26 p = p + 5; 27 printf(" %d %d", *q, p); 28 return *q + p; 29 } a) Which line of code is a function prototype / declaration b) Which line of code is a function call. c) which line of code is a function definition