bruseyboy 0 Newbie Poster

Hi
Is it possible to write a c++ program that sets up a pointer at the start of an array on the heap, and the pointer holds the address of the start of the code.
ie something like---

int *pointstart[5];
pointstart = new (codestart, 0,0,0.0);

1nt main()
{
codestart:; // label at start of code
...................
return()
}


thanks!