Skip to content

Instantly share code, notes, and snippets.

View Keerthu8999's full-sized avatar
🎯
Focusing

Keerthana Sunder Keerthu8999

🎯
Focusing
View GitHub Profile
#include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node *prev;
struct node *next;
}*top=NULL;
struct node *getnode(int x)
{