engineering recuitment GATE CSE 2023-24 Test Series Programming and Data Structure Linked List Singly Linked List
The following sequence of operations are performed on the above singly linked list
struct node *P
i) P=First → link → link;
ii) P→link → link → link = First;
iii) P= P → link → link;
iv) printf("%c", P→data);
The print statements print the _____ as output.
1
E
2
D
3
C
4
B