Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Remaining Time: 25 minutes,47 seconds Question Completion Status: ? Moving to an

ID: 3901905 • Letter: R

Question

Remaining Time: 25 minutes,47 seconds Question Completion Status: ? Moving to another question will save this response. Quedtio estion 2 10 points the variable a, write down definitions tor the tollowing using e langsage netati a) A pointer to an integer b) An array of ten integers c) An array of ten pointers to integers d) A pointer to an array of ten integers ) A pointer to a function that takes an integer asan aryunent and retune an steger to another question will save this response MacBook Pro

Explanation / Answer

a. int *a;
decleration of pointer to int a

b. int a[10];
Decleration of int array of size 10

c. int *a[10];
Decleration of array of 10 pointers

d. int *ptr = a;
where a is an array

e. int (*a) (int);
Pointer to a function that takes an integer as an argument and returns an integer