Monday, October 24, 2011
link list creation
A link list is a way to represent data so that each element points to next element.
steps to create a link list.
1.create a structure :
struct linkl
{
char name[20];
int number;
linkl *next;
};
two data members name and number are created and a self referential pointer next is created.
Subscribe to:
Post Comments (Atom)
-
Hi Guys , In this blog I will share information related to error : can't bind to 'formcontrol' since it isn't a known pr...
-
Hi Guys , This blog is about the error " Target container is not a DOM element. " The full error in the console log is ...
-
Hi Guys , In this blog I will share information related to error : ReferenceError: MongoClient is not defined . This error is related...
No comments:
Post a Comment