struct node {struct node*temp,*new}
prinf("%d",sizeof(struct node));
Answer Posted / aravind
ok guys.
Here first structure is not ended with a
termination.Structure is nested with another
structure.Usually pointer takes 4 bytes for GCC compiler
and here he defined 2 pointers so o/p would be 8 bytes but
compiler shows error of being undeclared structure
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What do you mean by keywords in c?
Explain what does the function toupper() do?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What is static volatile in c?
What is the value of h?
How can I implement a delay, or time a users response, with sub-second resolution?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What is difference between array and structure in c?
What is a void * in c?
How do you determine the length of a string value that was stored in a variable?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Why doesnt that code work?
What is the difference between char array and char pointer?
Can 'this' pointer by used in the constructor?
What are logical errors and how does it differ from syntax errors?