Skip to content

Instantly share code, notes, and snippets.

View mswat5's full-sized avatar
🎯
Focusing

Swatantra Mishra mswat5

🎯
Focusing
View GitHub Profile
@mswat5
mswat5 / LinkedList.cpp
Created September 20, 2023 03:27
Swatantra-145-DataStructures-Assignment-1
#include <iostream>
using namespace std;
//using structure
struct Node {
int data;
Node* next;
};
//fn to insert element at tail