How to return an array from a function in c++?
Return Array in Function
hi ajit
here is one example for your reference
int* fun()
{
int* arr = new int[100];
/* Some operations on arr[] */
arr[0] = 10;
arr[1] = 20;
return arr;
}
int main()
{
int* ptr = fun();
cout << ptr[0] << " " << ptr[1];