• DSA
    • 4 Views
    • 0 Likes
    • 0 Comments

    #include #include typedef struct Node { int roll_no; int *arr; char *name; int average; struct Node *next; struct Node *prev; char grade; }...