Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
@@ -82,9 +82,10 @@ int main() {
delete (&head, 2);
reverse(&head);
while (head != NULL) {
printf("%d ", head->sid);
head = head->next;
student *cur = head;
while (cur != NULL) {
printf("%d ", cur->sid);
cur = cur->next;
}
// free
The note is not visible to the blocked user.