Nodes in Linked List
These are called nodes in Linked List
struct invoice{
char itemno[5];
char itemdesc[30];
float rate;
int qty;
struct invoice *next;
};
Email This Post
Topics:
Languages |
These are called nodes in Linked List
struct invoice{
char itemno[5];
char itemdesc[30];
float rate;
int qty;
struct invoice *next;
};
Email This Post