Addition in Linked List

  1. #include<stdio.h>  
  2. #include<conio.h>  
  3. #include<stdlib.h>  
  4. typedef struct node{  
  5.     int data;  
  6.     struct node* next;  
  7. }node;  
  8. struct node* head;  
  9. void insertAtEnd(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.       
  22.     struct node* temp2=NULL;  
  23.     temp2=(node*)malloc(sizeof(struct node));  
  24.     temp=head;  
  25.     while(temp->next!=NULL)  
  26.     {  
  27.         temp=temp->next;  
  28.     }  
  29.     temp->next=temp2;  
  30.     temp2->data=x;  
  31.     temp2->next=NULL;  
  32. }  
  33. }  
  34. void print()  
  35. {  
  36.     int total=0;  
  37.     struct node* temp=head;  
  38.     while(temp!=NULL)  
  39.     {  
  40.         total=total+temp->data;  
  41.         temp=temp->next;  
  42.     }  
  43.         printf("%d",total);  
  44. }  
  45. void main()  
  46. {  
  47.     insertAtEnd(1);  
  48.     insertAtEnd(2);  
  49.     insertAtEnd(3);  
  50.     insertAtEnd(4);  
  51.     insertAtEnd(5);  
  52.     print();  
  53.     getch();  
  54. }