Pointer to structure in c

struct ABC{
    int x;
    int y;
};
struct ABC *ptr; //Pointer to structure ABC

Explanation:
Read pointer arithmetic

No comments: