> ...
> The object named 'abc'.
> ...
> The entire object is const. Which means that each
> individual member of the struct is const. Your struct
> contains only one member, a pointer (type 'int*'), there
> is no type 'int' member. So it's not a question of 'one
> of or both', since that presumes two members. The pointer
> 'test' is const. What it points to (if anything) is not
> const. A pointer to a const int is declared:
> const int *p;
> or
> int const *p;
> What specifically are you trying to do? Write
> code for a particular task, or understand something
> written by someone else?
I was exploring this because the structure contains variables declared