Linked List Data Structure: Creation and Traversal in C Language

preview_player
Показать описание
Linked List C Code: In this video, we will see how to create and traverse a Linked List in C Programming Language

Best Hindi Videos For Learning Programming:

►C Language Complete Course In Hindi -

►JavaScript Complete Course In Hindi -

►Django Complete Course In Hindi -

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

2 Minutes Ho sake to is playlist ko please share dar do bahut help ho jaegi! Thanks in advance.🙏🏻🙏🏻🙏🏻
Notes upload ho chuke hain aur Instagram pe tag karna mat bhoolna:
Instagram.com/codewithharry

CodeWithHarry
Автор

From this i will never forget linked list in my life.. U teach us like that no one will froget linked list.. Thank you harry bhai

amrutgarbhe
Автор

god bless you harry you are the ultimate solution for tier 3 collage students who can't afford expensive training and good lectures

Voyager_Plays
Автор

Even after a year your videos are helping people like me. Never stop Harry!

yooldrhino
Автор

Pehle baar data structure smajh me aa raha... Thank you harry bhai

AdarshKumar-neij
Автор

Repetition is necessary for such type of concept .
As such our brain needs brush up regularly to remember it for long term.
Support Harry for his extra efforts.💛

harshkansara
Автор

Someone give this person a diamond play button.

arnavx
Автор

Hi Harry Bhai, just successfully completed writing my first linked list in C++ because of you. As a result, I would like to thank you for all the hard work you are putting in for us. Thanks a lot brother and I have attached my C++ code for anyone's reference or feedback:

Code:

#include <iostream>
using namespace std;

struct node
{
int value;
node *next;
};

void listTraversal(node *ptr)
{
cout << "Elements of the list are: ";
while (ptr != NULL)
{
cout << ptr->value << " ";
ptr = ptr->next;
}
cout << endl;
}

int main()
{
// creating the nodes first
node *first = new (node);
node *second = new (node);
node *third = new (node);
node *fourth = new (node);
node *fifth = new (node);

// assigning first values and pointer
first->value = 23;
first->next = second;

// assigning second values and pointer
second->value = 56;
second->next = third;

// assigning third values and pointer
third->value = 79;
third->next = fourth;

// assigning fourth values and pointer
fourth->value = 121;
fourth->next = fifth;

// assigning fifth values and pointer
fifth->value = 0;
fifth->next = NULL;

listTraversal(first);
return 0;
}

// love you harry bhai

factified
Автор

1st i learn c from your video
2nd i learn python from your videos
3rd web development
and now learning ds also your videos are just addective you just force me to love with coding ..

SACHINKUMAR-yedc
Автор

Now I can never forget the linked list, this playlist is a life saver.

simonbaranwal
Автор

Bhai thanks, I just learning code for my civil projects, I watch your other's video also so helpful, I am your junior from same college IIT kgp apka tempo kafi high

ankitchaturvedi
Автор

I have watched so many of your videos i feel like i am graduated from code with harry university on youtube 👍 u r awesome

princejunior
Автор

You are savior for the beginner like me, I realize what its feel when you are taught from an IITIAN

agamsharma
Автор

thank you sm bhaiya..I've watched 2-3 videos both from youtube and a paid course. Could'nt understand linked list waha se. Aapne ek hi baar mei samjha diya

mrigakshipatowary
Автор

hats off to this guy who is practicing so hard for us to give so amazing videos and priceless knowledge

yashverma
Автор

The Best Explanation Of Linked List on INTERNET. Period.

ayushgautam
Автор

Thanx Yaar Harry Bhai. You made it so easy.

abdulrahil
Автор

The coding done for linked list is pure genius

kaushalbharadwaj
Автор

harry bhai sari ads dekhta hu aapki video ki...share or subscribe b krta hu like b krta hu.... harry bhai ki jai ho

CodeZeroSix
Автор

I have seen many videos but your way of explaining is very good.

mishrashashank