Skip to content

Instantly share code, notes, and snippets.

View sitansusubudhi's full-sized avatar

Sitansu Subudhi sitansusubudhi

  • Oracle
  • Bengaluru, India
View GitHub Profile
#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));