This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdlib.h> | |
#include<stdio.h> | |
struct Node{ | |
int data; | |
struct Node* next; | |
}; | |
struct Node* head =NULL; | |
void Insert(int data){ | |
struct Node* temp1 = (Node*)malloc(sizeof(struct Node)); |