Pointer to structure

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

No comments: