Hey, Do any of you know a good source of tutorials for C linked list??
This is a discussion on A good tutorials of Linked List within the C Programming forums, part of the General Programming Boards category; Hey, Do any of you know a good source of tutorials for C linked list??...
Hey, Do any of you know a good source of tutorials for C linked list??
Perhaps you could try the tutorial on this site:
http://www.cprogramming.com/tutorial/lesson15.html
is it the C tutorial or C++ one? because, I saw C++ code:
http://www.cprogramming.com/tutorial/lesson15.html
Code:conductor = root; while ( conductor != NULL ) { cout<< conductor->x; conductor = conductor->next; }
You're right. I selected the wrong one.
http://www.cprogramming.com/tutorial/c/lesson15.html
thank you![]()