C pointer to struct

struct A{
    int x;
    float y;
    long int **z;
};
struct A *ptr;

In the above declaration ptr is pointer to structure A.

No comments: