Answer Posted / silpa
if a structure tag is a datatype of a variable or data
member then it is known as a self referential structure.
for ex
template <class t>
struct node
{
t data;
node *link;//here link is a variable which contains data
type of structuretag ie node
}
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
Write program to remove duplicate in an array?
What is sizeof int?
Why we use stdio h in c?
What happens if header file is included twice?
Is c pass by value or reference?
Why doesnt the call scanf work?
What is the difference between functions abs() and fabs()?
Is c is a low level language?
How macro execution is faster than function ?
What are structure members?
What is the difference between array and pointer in c?
What is calloc in c?
Is c procedural or object oriented?
Describe static function with its usage?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?