Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C/C++ 함수에서 로컬 배열을 반환하는 방법

<시간/>

이것은 함수에서 로컬 배열을 반환하는 C++ 프로그램입니다.

알고리즘

Begin
   We can use dynamically allocated array to return a local array from function Array().
   Print the elements of the array.
End

예시 코드

#include <iostream>
using namespace std;
int* Array() {
   int* a = new int[100];
   a[0] = 7;
   a[1] = 6;
   a[2] = 4;
   a[3] = 5;
   return a;
}
int main() {
   int* p = Array();
   cout <<"The elements are:"<< p[0] << " " << p[1]<<" " <<p[2] << " " << p[3];
   return 0;
}

출력

The elements are:7 6 4 5