27.7k views
0 votes
Give an example of a function that correctly returns a pointer. For the toolbar, press ALT+F10 (PC) or ALT+FN+F10 (Mac).

User Inoy
by
7.2k points

1 Answer

5 votes

Final answer:

An example of a function that returns a pointer is the malloc function in C/C++. This function is used to dynamically allocate memory and returns a pointer to the allocated memory.

Step-by-step explanation:

An example of a function that correctly returns a pointer in programming is the malloc function in C/C++. This function is used to dynamically allocate memory and returns a pointer to the allocated memory.

For example:

#include<stdlib.h>

int *createIntArray(int size) {
int *arr = (int*)malloc(size * sizeof(int));
return arr;
}

User Apparao
by
8.3k points