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 |
What is the difference between int main and void main?
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
Why is C language being considered a middle level language?
Why Modern OS are interrupt driven?Give an example
How would you obtain the current time and difference between two times?
write a program to print largest number of each row of a 2D array
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?
What is meant by errors and debugging?
C,c++, Java is all are structural oriented or procedure oriented language..?
What are the advantages of the functions?
What are global variables and how do you declare them?