C pointer to structure

struct TEST{
    int x;
    float y;
};
struct TEST *ptr;
In the above declaration ptr is pointer to structure TEST.

No comments: