what is self refrential structure
Answers were Sorted based on User's Feedback
Answer / 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 |
whenever a structure is been pointed by the same structure
pointer which is the member of the same structure is called
as self referential structure....
thank u
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / ambar
whenever a structure calls itself during execution it is
known as a self referential structurte
| Is This Answer Correct ? | 1 Yes | 0 No |
write a C program to print the program itself ?!
what is the different bitween abap and abap-hr?
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
How many types of operator or there in c?
write a C code To reverse a linked list
Why cant I open a file by its explicit path?
What is local and global variable in c?
Are there constructors in c?
How can I find the modification date and time of a file?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
Find string palindrome 10marks
5 Answers Honeywell, Infosys, Riktam, Roland,
Do you have any idea how to compare array with pointer in c?