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 |
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
What does a run-time "null pointer assignment" error mean?
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
provide an example of the Group by clause, when would you use this clause
What are pointers in C?
Why preprocessor should come before source code?
What are the different types of linkage exist in c?
To what value do nonglobal variables default? 1) auto 2) register 3) static
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
What are the 4 data types?