Skip to content
Open

mm #1

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ADDTWONUMBERS.CPP
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include<iostream.h>
#include<conio.h>
#include<math.h>

#include<string.h>
//Node defination
struct Node{
int data;
Expand All @@ -13,8 +13,8 @@ struct Node{

//insert at any point in Linked List as per given by the user
void insertAtAnyPoint(Node **create, int x,int pos){
//allocation of newnode in heap
Node *temp = new Node();
//allocation of newnode in head
//Node *temp = new Node();
temp->data = x;
temp->next = NULL;

Expand Down