Re: working with pointers
- From: Leif K-Brooks <eurleif@xxxxxxxxxxxxx>
- Date: Tue, 31 May 2005 19:11:08 GMT
Michael wrote:
> a=2
> b=a
> b=0
That's more or less equivalent to this C++ code:
int *a;
int *b;
a = new int;
*a = 2;
b = a;
b = new int;
*b = 0;
.
- References:
- working with pointers
- From: Michael
- Re: working with pointers
- From: Steven Bethard
- Re: working with pointers
- From: Michael
- working with pointers
- Prev by Date: Re: working with pointers
- Next by Date: Re: working with pointers
- Previous by thread: Re: working with pointers
- Next by thread: Re: working with pointers
- Index(es):