what is self refrential structure

Answers were Sorted based on User's Feedback



what is self refrential structure..

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

what is self refrential structure..

Answer / vignesh1988i

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

what is self refrential structure..

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

Post New Answer

More C Interview Questions

What is the difference between int main and void main?

0 Answers  


a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above

3 Answers  


Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates

3 Answers  


Why is C language being considered a middle level language?

0 Answers  


Why Modern OS are interrupt driven?Give an example

3 Answers  






How would you obtain the current time and difference between two times?

0 Answers   TISL,


write a program to print largest number of each row of a 2D array

0 Answers  


FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?

4 Answers   Wipro,


What is meant by errors and debugging?

0 Answers  


C,c++, Java is all are structural oriented or procedure oriented language..?

6 Answers  


What are the advantages of the functions?

0 Answers  


What are global variables and how do you declare them?

0 Answers  


Categories