Insert at the Beginning

  1. #include <stdio.h>  
  2. #include <stdlib.h>  
  3. typedef struct node{  
  4.     int data;  
  5.     struct node *next;  
  6. } node;  
  7.   
  8. struct node* head;  
  9. void insert(int x)  
  10. {  
  11.     struct node* temp=NULL;  
  12.     temp=(node *)malloc(sizeof(struct node));  
  13.     temp->data=x;  
  14.     if(head==NULL)  
  15.     {         
  16.         head=temp;  
  17.         temp->next=NULL;  
  18.     }  
  19.     else  
  20.     {  
  21.         temp->next=head;  
  22.         head=temp;  
  23.     }  
  24. }  
  25. void print()  
  26. {  
  27.     struct node* temp=head;  
  28.     while(temp!=NULL)  
  29.     {  
  30.         printf("%d",temp->data);  
  31.         temp=temp->next;  
  32.     }  
  33. }  
  34. int main()  
  35. {  
  36.     insert(1);  
  37.     insert(2);  
  38.     insert(3);  
  39.     print();  
  40.     getch();  
  41.       
  42. }