Return a Pointer from a Function : Function Return « Function « Visual C++ .NET






Return a Pointer from a Function

 
#include "stdafx.h"
#include <typeinfo.h>
#using <mscorlib.dll>
using namespace System;
int *MyInteger() {
    int *res = new int;
    *res = 10;
    return res;
}
int main(void)
{
    int *x = MyInteger();
    delete x;
    return 0;
}

   
  








Related examples in the same category