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;
}