Data Structure (2130702)

BE | Semester-3   Summer-2016 | 06/09/2016

Q1) (13)

Write ‘C’ structure of Singly linked list.

struct node
{
 int info struct node *link
};