SLL Reverse
SLL Reverse
h>
#include <stdlib.h>
struct node
{
int data;
struct node *next;
};
int main()
{
struct node *first;
struct node *second;
struct node *third;
struct node *fourth;
first->data = 7;
first->next = second;
second->data = 57;
second->next = third;
third->data = 34;
third->next = fourth;
fourth->data = 29;
fourth->next = NULL;