Robert Ryan wrote:
>
> is a pointer in C++ also an object, since all things in C++ are objects
>  
>
> [Non-text portions of this message have been removed]
>
>  
Like Robert said, no. C++ only has support for object-oriented 
programming (classes). A pointer is simply a number (an integer) so no, 
it isn't an object. It can, however, point to an object.

Reply via email to